// New Window Script

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()};
}

//Gathered from http://www.fourlevel.com 


