var version = "other"                                                                                         
                   browserName = navigator.appName;                                                                                            
                   browserVer = parseInt(navigator.appVersion);                                                                                         
                                                                                         
               if (browserName == "Netscape" && browserVer >= 3) version = "n3";                                                                                         
               else if (browserName == "Netscape" && browserVer < 3) version = "n2";                                                                                         
               else if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) version = "e4";                                                                                         
               else if (browserName == "Microsoft Internet Explorer" && browserVer < 4) version = "e3";                                                                                         
                                                                                         
               function marquee_star(direct,x,y)                                                                                         
               {                                                                                         
              	if (version == "e4")                                                                                         
	             {                                                                                         
		          document.write("<marquee behavior=scroll direction="+direct+" width="+x+" height="+y+" scrollamount=1 scrolldelay=10 onmouseover='this.stop()' onmouseout='this.start()'>")                                                                                         
 	             }                                                                                         
               }                                                                                         
                                                                                         
               function marquee_end()                                                                                         
               {                                                                                         
	              if (version == "e4")                                                                                         
               {                                                                                         
		          document.write("</marquee>")                                                                                         
 	            }                                                                                         
                }

function clickForm(theForm)
 {
  if(theForm.putStr.value=="")
  {
    alert("请输入您想要查询的关键字！");
    theForm.putStr.focus();
    return false;
  }
 }

function click()
{
 if(event.button==2)
 { alert("对不起，禁止复制!\nSorry,No copying!"); }
}
 document.onmousedown=click;

//闪烁字所需的程序
var thissize=20
var textfont="隶书"

var textcolor= new Array()
textcolor[0]="000000"
textcolor[1]="000000"
textcolor[2]="000000"
textcolor[3]="111111"
textcolor[4]="222222"
textcolor[5]="333333"
textcolor[6]="444444"
textcolor[7]="555555"
textcolor[8]="666666"
textcolor[9]="777777"
textcolor[10]="888888"
textcolor[11]="999999"
textcolor[12]="aaaaaa"
textcolor[13]="bbbbbb"
textcolor[14]="cccccc"
textcolor[15]="dddddd"
textcolor[16]="eeeeee"
textcolor[17]="ffffff"
textcolor[18]="ffffff"

var message = new Array()
message[0]="中国市场产品质量用户满意度调查"
message[1]="主办：人民日报社市场信息中心"
message[2]="承办：人民日报社市场报"
message[3]="有奖调查，欢迎网上答卷"
i_message=0

var i_strength=0
var i_message=0
var timer

function glowtext() { 
if(document.all) {
if (i_strength <=17) {
glowdiv.innerText=message[i_message]
document.all.glowdiv.style.filter="glow(color="+textcolor[i_strength]+", strength=4)"
i_strength++
timer=setTimeout("glowtext()",100)
}
else {
clearTimeout(timer)
setTimeout("deglowtext()",1500)
}
} 
}

function deglowtext() { 
if(document.all) {
if (i_strength >=0) {
glowdiv.innerText=message[i_message]
document.all.glowdiv.style.filter="glow(color="+textcolor[i_strength]+", strength=4)"
i_strength--
timer=setTimeout("deglowtext()",100)
}
else {
clearTimeout(timer)
i_message++
if (i_message>=message.length) {i_message=0}
i_strength=0
intermezzo()
}
} 
}

function intermezzo() { 
glowdiv.innerText=""
setTimeout("glowtext()",1000) 
}
//闪烁字所需的程序结束


