/* -------------- FRAME BUST / RESIZE WINDOW ---------------*/
self.moveTo(0,0)
self.resizeTo(screen.availWidth,screen.availHeight) 
if (window != window.top)
  top.location.href = location.href;

/* -------------- LOADING PAGE ---------------*/
function loading()
{
if (document.getElementById)document.getElementById('loadpage').style.visibility='hidden';
else {if(document.layers)document.loader.visibility='hidden';
else document.all.loadpage.style.visibility='hidden'}
}
window.onload = loading;

/* -------------- 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 
}

/* -------------- STOP ERRORS ---------------*/
function stopErrors() {
return true;
}
window.onerror = stopErrors;
