function fullScreen(theURL) 
{					
	window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');					
}

function fullScreen2(theURL) 
{					
	window.open(theURL, 'popWin', 'fullscreen=yes, scrollbars=yes, menubar=yes, resizable=yes, titlebar=yes, toolbar=yes');					
}

function Lvl_openWin(u,n,w,h,l,t,c,f,x) 
{ 
	//v1.0 4LevelWebs
	var ww=((screen.width-w)/2);
	if(c==1)
	{
		l=ww;
		t=(screen.height-h)/2;
	}
	
	if(c==2)
	{l=ww}
	
	f+=',top='+t+',left='+l;
	LvlWin = window.open(u,n,f);
	
	if(x==1){LvlWin.focus()}
	document.MM_returnValue=false;
}
