//Validate this shit


//Add some time to process this shit
function showme(what){
document.getElementById(what).style.display='block';
}
setTimeout("showme('loadlate')",3000);

function hideme(what){
document.getElementById(what).style.display='none';
}
setTimeout("hideme('proc')",3000);


