﻿	agentStr = navigator.userAgent;
	rExp     = /MSIE/gi;
	results = agentStr.search(rExp);
		
	if (results > 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=loading.gif border=0><br><font color=#ffffff><b>Đang tải dữ liệu. Xin vui lòng chờ trong giây lát ...</b></font></td>");
		document.write("		</tr>");
		document.write("	</table>");
		document.write("</div>");
	}
