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 = '/terms.html';
	}
	
	// PRIVACY STATEMENT
	if(win==2){ 
		u = '/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';
	}
	
	// HAIR HEROS
	if(win==4){ 
		u = '/info/hairheros.html';
		h = 260; 
		w = 300; 
		s = 'no'; 
	}
	
	// ECARD (JOY TO THE HAIR)
	if(win==5){ 
		u = '/data/ecard.aspx';
		h = 580; 
		w = 630; 
		s = 'no'; 
	}
	
	// A NOTE ON THE ILLUSTRATOR
	if(win==6){ 
		u = '/info/holidayillustrator.html';
		h 	= 250; 		//	height
		w 	= 300; 		// 	width
	}
	
	
	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);
}