checkBrowser();
self.moveTo(0,0);
self.resizeTo(screen.availWidth,screen.availHeight);
var p = 0;
function changeProgress(){
p ++;
var s = document.all('pStr').getElementsByTagName("div");
document.all('progressText').innerHTML = s[p-1].innerHTML;
if ( p < s.length ) progressTimeout = window.setTimeout("changeProgress()",30);
else {
//document.all('progress').style.display = "none";
p = 0; changeProgress2();
}
}
function changeProgress2(){
p ++;
document.all('progressText').style.color = "#ffffff";
document.all('progressText').style.fontSize = "16px";
document.all('progressText').style.fontWeight = "bold";
document.all('progressText').style.fontFamily = "幼圆";
document.all('progressText').style.lineHeight = "220%";
document.all('progressText').style.paddingLeft = "50px";
document.all('progressText').innerHTML = document.all('sStr').innerText.substr(0,p).replace("#","
").replace("#","
");
if ( p < document.all('sStr').innerText.length+6 ) {
progressTimeout = window.setTimeout("changeProgress2()",75);
} else if ( p < 10000 ) {
p = 10000;
progressTimeout = window.setTimeout("changeProgress2()",200);
} else {
//document.all('progress').style.display = "none";
document.all('progress').style.background = "Transparent";
document.all('start').style.zIndex = 200;
}
}
function checkBrowser(){
if ( window.navigator.userAgent.indexOf("Firefox") != -1 ) {
alert("您正在使用火狐浏览器,不支持本站使用的最新技术。\n\n请使用IE浏览器6.0以上版本访问本站!");
window.top.location.replace("http://noza.cn/web/h/e/l/help/about_alert.html");
}
}