function popup(win,w,h) { //1.0

	// DEFAULTS
	h 	= h; 		//	height
	w 	= w; 		// 	width
	l	= 'no';		//	location bar
	m	= 'no';		//	menu bar
	t 	= 'no';		// 	toolbar
	r 	= 'yes';	// 	resizeable
	sc 	= 'yes'; 	//	scrollbars
	st 	= 'no';	//	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 = 'termsandconditions.html';
	}
	
	// SITE CREDITS
	if(win==2){ 
		u = 'credits.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);
}