	agentStr = navigator.userAgent;
	rExp     = /MSIE/gi;
	results = agentStr.search(rExp);
		
	if (results > 0) {
		document.write("<div id=loading style='cursor: wait; position: absolute; top: -150px; left: 50px; height: 100%; z-index: -1'>");
		document.write("	<table width='100%' height='100%'>");
		document.write("		<tr>");
		document.write("			<td align=center valign=middle class=titleMenu><p><font color=#0000FF><b>Loading data. Please wait...</b></font></p><p><img src=http://www.xomgame.com/loading.gif></p></td>");
		document.write("		</tr>");
		document.write("	</table>");
		document.write("</div>");
	}
              
              function remove_loading() {
        this.clearInterval(t_id);
        var loading = document.getElementById('loader_container');
        loading.style.display='none';
        loading.style.visibility='hidden';
}