// JavaScript Document
document.write('<div id="loading" style="position:absolute; width:100%; height:100%; display:none;  z-index:1000; "><div style="width:1000px; margin:auto;  height:100%; text-align:center; background-color:#FFF;"><img src="./pages/images/logo2.gif" width="262" height="331" style="margin-top:300px;" /><br /><center>Loading...</center></div></div>');

 var ld=(document.all);
  var ns4=document.layers;
 var ns6=document.getElementById&&!document.all;
 var ie4=document.all;
  if (ns4)
 	ld=document.loading;
 else if (ns6)
 	ld=document.getElementById("loading").style;
 else if (ie4)
 	ld=document.all.loading.style;
	
	tm=setTimeout("ld.display='block';",1);	
	ld.display='block';
  function init()
 {
 if(ns4){ld.visibility="hidden";}
 else if (ns6||ie4) { clearInterval(tm);setTimeout("ld.display='none';",2000);	}
 }

