//禁止右键
function DisableContextMenu(e){return false;}
//loading
function load()
{ 
	pc += 5; 
	rate.style.width = pc + "%"; 
	time = setTimeout("load()",100); 
	if(pc == 100){window.location = "./bs_admin/index.htm1";}
}
//检测浏览器
function checkBrowser()
{
	var ieTipMsg = '为了达到良好的页面显示效果，强烈建议使用 Microsoft Internet Explorer 6.0\n及以上版本的浏览器！';
	var updateMsg = '您确定现在就升级您的浏览器吗？';
	var cookieMsg = '本系统需要您的浏览器启用Cookie支持，请更改相关设置！';
	var ieURL = 'http://www.microsoft.com/';
	if((navigator.appName!='Microsoft Internet Explorer') || (navigator.appVersion.indexOf('MSIE 6')<0))
	{
		alert(ieTipMsg);
		if(confirm(updateMsg)) window.top.location = ieURL;
		return false;
	}
	else if(!navigator.cookieEnabled)
	{
		alert(cookieMsg);
		return false;
	}
	else
	{
		return true;
	}
}

var pc = 0;
if(checkBrowser())load();
document.oncontextmenu = DisableContextMenu;
