if (navigator.appName != "Netscape") {
	document.write('<div id="Border" style="position:absolute; left:0px; top:0px; width:750px; height:42x; z-index:1; clip: rect(0 750 42 0)">');
	MakeLayer(1,222,350,"¤Ø³ÀÒ¾à¾×èÍªÕÇÔµ·ÕèâÃ§¾ÂÒºÒÅÁ§¡Ø®ÇÑ²¹ÐÀÙÁÔã¨ÁÍºãËé¤Ø³");
	document.write('</div>');
}

function MakeLayer (layerNum, layerLeft, layerWidth,theMessage) {
var theWidth = layerWidth - 10;
//document.write('<div id="BPH' + layerNum + '" style="position:absolute; left:'+layerLeft+'px; top:50px; width:'+layerWidth+'px; height:40px; z-index:2;overflow:hidden;visibility:hidden; background-image: url(images/bg005.gif); layer-background-image: url(images/bg005.gif); border: 0px none #000000">');
document.write('<div id="BPH' + layerNum + '" style="position:absolute; left:'+layerLeft+'px; top:50px; width:'+layerWidth+'px; height:40px; z-index:2;overflow:hidden;visibility:hidden; background-color: #993366; layer-background-color: #993366; border: 0px none #000000">');
document.write('<table width="'+layerWidth+'" border="0" cellspacing="0" cellpadding="0">');
document.write('<tr align=left valign=top class=normal><td width=5><img src="/images/htBrLeft.gif" width=5 height=6"></td><td width=5><img src="/images/spacer.gif" width='+theWidth+' height=6"></td><td width=5><img src="/images/htBrRight.gif" width=5 height=6"></td></tr>');
document.write('<tr align=left valign=top>');
document.write('	<td width=5>&nbsp;</td>');
document.write('	<td width='+theWidth+'340>');
document.write('	 <img src="/images/arrow.gif" align=absmiddle><font color="#FFFFFF" size=2>'+theMessage+'</font>');
document.write('	</td>');
document.write('	<td width=5>&nbsp;</td>');
document.write('</tr>');
document.write('</table>');
document.write('</div>');
}

var sRepeat=null
var step_through=0
var tHeight=310
function doMarquee(dir, src, amount) {
        if (amount==null) amount=10
        switch (dir) {
        case "up":
                document.all[src].style.pixelTop-=amount
                  step_through=step_through+1
                    if (step_through==tHeight) {
                       step_through=0
                       document.all.s1.style.pixelLeft=0
                       document.all.s1.style.pixelTop=0
                     }
                if (-document.all[src].style.pixelTop>=document.all[src].offsetHeight)
                        document.all[src].style.pixelTop=document.all[src].offsetParent.offsetHeight
                break;
        case "down":
                document.all[src].style.pixelTop+=amount
                   step_through=step_through-1
                   if (step_through==0) {
                       step_through=tHeight
                       document.all.s1.style.pixelLeft=0
                       document.all.s1.style.pixelTop=-tHeight
                     }
                if (document.all[src].style.pixelTop>document.all[src].offsetParent.offsetHeight)
                        document.all[src].style.pixelTop = -document.all[src].offsetHeight
                break;
        }
        return false
}
function RunMarquee(sDir,sWhich) {
  clearInterval(sRepeat)
  iAmount=1
  sRepeat = setInterval("doMarquee('"+sDir+"','"+sWhich+"'," + iAmount+")",100)

}
function doLoad() {
  setup()
  window.document.all.s1.ondragstart = new Function("return false")
  RunMarquee("up","s1")
}
