// JavaScript Document
hide1=false;
hide2=false
function popit(murl,windowname,stuff) {
window.open(murl,windowname,stuff);
}
function showit(){
document.getElementById("centerdiv").className="show";
document.getElementById("centerdiv").onclick=new Function("hideit()")
document.getElementById("centerdiv2").onclick=new Function("hideit2()")
setTimeout("hideit()",30000)


}
function hideit(){

document.getElementById("centerdiv").className="hidden";
if(hide2==false){
document.getElementById("centerdiv2").className="show";
}
hide2=true;
setTimeout("hideit2()",5000)
}
function hideit2(){
document.getElementById("centerdiv2").className="hidden";
hide2=true;
}
function startpop(){
document.getElementById("loadtest").onload=new Function("showit()")
}

