function popup(win) { //1.0


	// DEFAULTS
	h 	= 435; 		//	height
	w 	= 350; 		// 	width
	l	= 'no';		//	location bar
	m	= 'no';		//	menu bar
	t 	= 'no';		// 	toolbar
	r 	= 'yes';	// 	resizeable
	sc 	= 'yes'; 	//	scrollbars
	st 	= 'yes';	//	status bar 
	x 	= 10; 		// 	y from upper left corner of screen
	y 	= 10;		// 	y from upper left corner of screen
	n 	= 'pop';	// 	window name

	
	// SUPERBOWL STRIKE
	if(win==1){ 
		u = '/strike/index.asp';
		h	= 750;
		w	= 850;
		sc  = 'no';
		r   = 'yes';
		n 	= 'strike';
		
	}
	
	// PRIVACY POLICY
	if(win==2){ 
		u = '/info/pp.html';
		h = 350;
		w = 435;
		n = 'privacy';
	}
	
	// TERMS AND CONDITIONS
	if(win==3){ 
		u = '/info/tc.html';
		h = 350;
		w = 435;
		n = 'terms';
	}
	
	
	f ='height='+h+',width='+w+',top='+y+',left='+x+',resizable='+r+',scrollbars='+sc+',status='+st+',toolbar='+t+',menubar='+m+',location='+l;
	window.open(u,n,f);
}