function popUpWindow(theURL,winName,w,h,l,t) {
	winName = window.open(theURL,winName,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,height='+h+',width='+w+',left='+l+',top='+t+'');	 		  
	if (winName.closed)
	{
		winName = window.open(theURL,winName,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,height='+h+',width='+w+',left='+l+',top='+t+'');
	}
	
	else {
    winName.focus();
	}
	self.name="main";
}
function fullScreen(theURL) {
window.open(theURL, '', 'fullscreen=yes, scrollbars=1');
}