	function OpenCond(dest,cnd,w,h,cookieval) {
		//if (document.cookie.indexOf(cookieval)==-1) {
		//	if (cnd) {
				x=(screen.width-w)/2;
				y=(screen.height-h)/2;
				document.cookie=cookieval+"="+1;
				wnd=window.open(dest,'','width='+w+', height='+h+', left='+x+', top='+y+', screenX='+x+', screenY='+y+', resizable=no, scrollbars=no');
		//	}
		/*}else {
		}*/
		
	}
	function showSplash(src,width,height,cook) {
		cond=(window.location.search.length==0);
		OpenCond(src,cond,width,height,cook);

	}


