function peregruz(){location.reload();}
function outmsg(msg,ctrlwidth)
{
   msg = " --- "+msg
   newmsg = msg
   while (newmsg.length < ctrlwidth) {newmsg += msg}
   document.write ('<FORM class="null" NAME="Outmsg">')
   document.write ('<INPUT NAME="outmsg" VALUE= "'+newmsg+'" SIZE="'+ctrlwidth+'" style="font-size:15px;color:#fff;font-weight:600;border-width:0px;border-style:none;background:url(images/bg_str.jpg) top repeat-x;">')
   document.write ('</FORM>')
   rollmsg()
}
function rollmsg()
{
   NowMsg=document.Outmsg.outmsg.value
   NowMsg=NowMsg.substring(1,NowMsg.length)+NowMsg.substring(0,1)
   document.Outmsg.outmsg.value = NowMsg
   bannerid=setTimeout("rollmsg()",100)
}
