/* -------------- STOP ERRORS ---------------*/
function stopErrors() {
return true;
}
window.onerror = stopErrors;

/* -------------- USERS SCREEN SIZE COOKIE ---------------*/
writeCookie();

function writeCookie()
{
 var today = new Date();
 var the_date = new Date("December 31, 2023");
 var the_cookie_date = the_date.toGMTString();
 var the_cookie = "users_resolution="+ screen.width +"x"+ screen.height;
 var the_cookie = the_cookie + ";expires=" + the_cookie_date;
 document.cookie=the_cookie 
}

/* -------------- NOFRAME/FULLSIZE WINDOW ---------------*/
if (window != window.top)
  top.location.href = location.href;
self.moveTo(0,0) 
self.resizeTo(screen.availWidth,screen.availHeight)

/* -------------- POPUP WINDOWS CENTER SCREEN ---------------*/

	var win=null;
	
	function NewWindow(mypage,myname,w,h,scroll,pos){
	
		if(pos=="random")
			{LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;
			TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}

		if(pos=="center")
			{LeftPosition=(screen.width)?(screen.width-w)/2:100;
			TopPosition=(screen.height)?(screen.height-h)/2:100;}
	
		else if((pos!="center" && pos!="random") || pos==null){LeftPosition=0;TopPosition=-0}
	
	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';

	win=window.open(mypage,myname,settings);}
