// JavaScript Document
function preload()
{
  		document.all.DivJS.style.display="none";
}//func

function showDiv()
{
  		document.all.DivJS.style.display="";
}
<!--
//2006-12-17 ¼W¥[-------------------------------------------------------------------------------------------
if (window.addEventListener) //DOM method for binding an event
window.addEventListener("load", preload, false)
else if (window.attachEvent) //IE exclusive method for binding an event
window.attachEvent("onload", preload)
else if (document.getElementById) //support older modern browsers
window.onload=preload;
-->
