﻿var wide = window.screen.availWidth;
var high = window.screen.availHeight;
window.moveTo(0,0);
window.resizeTo(wide,high);

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: "+(high - (high*20/100))+"; z-index: -1'>");
	document.write("	<table width='"+(wide - (wide*5/100))+"' height='"+(high - (high*20/100))+"' border=0>");
	document.write("		<tr>");
	document.write("			<td align=center valign=middle id=flashcontent_loading></td>");
	document.write("		</tr>");
	document.write("	</table>");
	document.write("</div><SCRIPT type=text/javascript>var so = new SWFObject('images/dong%20ho.swf', 'mymovie', '190', '160', '6');so.write('flashcontent_loading');</SCRIPT>");
}
function init()
{
   if (navigator.userAgent.indexOf("MSIE") > 0)
   {
   	    document.all.loading.style.visibility = "hidden";
   }
   else
   {
	    document.loading.visibility = "hidden";
   }
   document.write("<style type=\"text/css\">body {	margin-left: 0px;	margin-top: 1px;	margin-right: 0px;	margin-bottom: 0px;	background-color : #02a3bc;background-image : url(images/background.gif);	background-repeat : repeat-x;}</style>");
}