﻿var myvar = "";
var timeout = 20;
var redirecturl = "Man_hinh\index.aspx";
function writeWelcome(url)
{
	var Html = '<body style="background:url(..\Hinh_anh\bg_outside.gif);font:10pt verdana ;color:#000000 ;margin: 200px 10px 10px 10px;"><div align="center"><div style="background: #ffcc00 url(..\Hinh_anh\bg_nen.gif); padding: 10px;text-align:center; width:500px; border: 2px solid #33cc00"><p><b>Welcome to Vietnamese American Primary & Secondary School...</b> </p><p><a href="' + url + '">Chào mừng bạn đến với Trường Tiểu Học Việt Mỹ</a> </p></div></div></body>';
	document.write (Html);
	redirecturl = url;
	exec_refresh();
}
function exec_refresh()
{
	window.status = "Welcome to Vietnamese American Primary & Secondary School..." + myvar;
	myvar = myvar + " .";
	var timerID = setTimeout("exec_refresh();", 100);
	if (timeout > 0)
	{
		timeout -= 1;
	}
	else
	{
		clearTimeout(timerID);
		window.status = "";
		window.location = redirecturl;
	}
}
