function popup(win) { //1.0
	// DEFAULTS
	h 	= 435; 		//	height
	w 	= 410; 		// 	width
	l	= 'no';		//	location bar
	m	= 'no';		//	menu bar
	t 	= 'no';		// 	toolbar
	r 	= 'no';	// 	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
	u = win;
	
	
	
	
	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);
}

function popupCard(win) { //1.0

	// DEFAULTS
	h 	= 465; 		//	height
	w 	= 450; 		// 	width
	l	= 'no';		//	location bar
	m	= 'no';		//	menu bar
	t 	= 'no';		// 	toolbar
	r 	= 'no';	// 	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
	u = win;
	
	
	
	
	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);
}