// JavaScript Document
window.onload = function(){
	waitPreloadPage();
}		
function pageloading(){
document.open();
document.write('<DIV id="prepage" style="position:absolute; font-family:arial; font-size:16px; left:0px; top:0px; background-color:#FFFBEA;width:100%; height:750px">');
document.write('<TABLE width="100%"><TR>');
document.write('<TD>');
document.write('<div align="center" style="padding-top:20%"><B>Loading<br>');
document.write('<img src="images\/loading.gif" width="16" height="16"><\/B><\/div><\/TD>');
document.write('<\/TR><\/TABLE>');
document.write('<\/div>');
document.close();
}
function matchhight_loading(){
document.getElementById('prepage').style.height = document.getElementById('main').offsetHeight + 'px';
}
function waitPreloadPage() { //DOM
		if (document.getElementById){
			document.getElementById('prepage').style.visibility='hidden';
		}else{
			if (document.layers){ //NS4
			document.prepage.visibility = 'hidden';
		}else { //IE4
					document.all.prepage.style.visibility = 'hidden';
		}
	}
clearInterval("matchhight_loading()") 
}
