﻿// JavaScript Document
function blurscreen()
{
	if (document.getElementById('blurscreen').style.display=='none')
	{
		document.getElementById('blurscreen').style.display='block';
		document.getElementById('blurscreen').style.top=0;
		document.getElementById('blurscreen').style.left=0;
		document.getElementById('blurscreen').style.width=document.body.scrollWidth;
		document.getElementById('blurscreen').style.height=document.body.scrollHeight;
	}
	else 	
		document.getElementById('blurscreen').style.display='none';
}
function showHideBox()
{
	if (document.getElementById('box').style.display=='none')
	{
		document.getElementById('box').style.display='block';
		document.getElementById('box').style.top=window.screen.height/2-document.getElementById('box').offsetHeight;
		document.getElementById('box').style.left=window.screen.width/2-document.getElementById('box').offsetWidth/2;
		document.body.scrollTop=0;
	}
	else document.getElementById('box').style.display='none';
}
function showalert()
{
	blurscreen();
	showHideBox();
	document.getElementById('box').innerHTML="<table class=tblbox width=100% cellpadding=0 cellspacing=0><tr><td width=100% style='color:#FFFFFF; padding-top:6px; font-size:14px; font-family:Tahoma' align='center'><b>Thông báo</b></td><td onclick='showHideBox();blurscreen();' style=cursor:hand;>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td></tr><tr><td align=center colspan=2><br>Trang này đang trong thời gian xây dựng. Mời bạn quay lại sau<br><br>Cảm ơn bạn đã truy cập <strong>Mạng tìm kiếm thuần việt TIM1S.VN</strong><br><br><input type=button value=' Ðóng ' onclick='showHideBox();blurscreen();' class='btnreg'></td></tr></table>";
	return false;
}
function bb_bookmarksite(title, url)
{
	if (document.all)
	{
        window.external.AddFavorite(url, title);
	}
    else if (window.sidebar)
	{
        window.sidebar.addPanel(title, url, "")
	}
} 