	agentStr = navigator.userAgent;
	rExp     = /MSIE/gi;
	results = agentStr.search(rExp);
	
	rExp     = /safari/gi;
	results1 = agentStr.search(rExp);
		
	if (results > 0 || results1 > 0) {
		document.write("<div id=loading style='position: absolute; top: 0px; left: 0px; height: 100%; z-index: -1'>");
		document.write("	<table width='100%' height='100%'>");
		document.write("		<tr>");
		document.write("			<td align=center valign=middle class=titleMenu><img src=/images/imgLoading.gif><br><font face=Verdana color=#0000FF size=2><b>Đang tải ...</b></font></td>");
		document.write("		</tr>");
		document.write("	</table>");
		document.write("</div>");
	} else {
		document.write("<div id=loading style='position: absolute; top: 0px; left: 45%; height: 100%; z-index: -1'>");
		document.write("	<table width='100%' height='100%'>");
		document.write("		<tr>");
		document.write("			<td align=center valign=middle class=titleMenu><img src=/images/imgLoading.gif><br><font face=Verdana color=#0000FF size=2><b>Đang tải ...</b></font></td>");
		document.write("		</tr>");
		document.write("	</table>");
		document.write("</div>");	
	}
