function popup(win) { //1.0

	// DEFAULTS
	h 	= 435; 		//	height
	w 	= 355; 		// 	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

	
	// TERMS AND CONDITIONS
	if(win==1){ 
		u = 'html/terms.html';
	}
	
	// PRIVACY STATEMENT
	if(win==2){ 
		u = 'html/privacy.html';
	}
	
	// SITE CREDITS
	if(win==3){ 
		u = '/info/credits.html';
		h = 350; 
		w = 350; 
		sc = 'no';
		st = 'no';
		m = 'no';
		l = 'no';
		r = 'no';
	}
	
	// COMMUNITY TERMS + CONDITIONS
	if(win == 4){
		u = 'html/community_terms.html'; 
	}
	
	// DISCLAIMER
	
	if(win == 5){
		u = 'html/disclaimer.html';
	}
	
	f ='height='+h+',width='+w+',top='+y+',left='+x+',resizable='+r+',scrollbars='+sc+',status='+st+',toolbar='+t+',menubar='+m+',location='+l;
	//alert(f);
	window.open(u,n,f);
}