<!--
var newwin;

function extraWins(uRL,windowName,windowWidth,windowHeight,reSizeable,scroll,fullscreen){
	var addMe;
	newwin = window.open(uRL, windowName ,'toolbar=no, scrollbars='+scroll+',location=no,directories=no,status=yes,menubar=yes,resizable='+reSizeable+',width='+windowWidth+',height='+windowHeight+',fullscreen='+fullscreen);
	if (newwin) {newwin.focus()};
	}	
	
function closeDown(){
	self.close()
	}
			
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=530,height=280');");
}
// End -->