﻿//关闭,最小化,最大化

function closeNotice(){
    document.getElementById('PopNotice').style.display = 'none';
}

try
{
    setTimeout('PopNotice();', 60000);
    //以下是为了兼容 xhtml1.0 和 html4两种情况 / ie6 ie7 ff 的兼容用hack
    
    if( typeof document.compatMode != 'undefined' && document.compatMode != 'BackCompat')
    {
        document.writeln('<div  style="z-index:9;left:0;bottom:0; height:133px;width:200px;overflow:hidden;POSITION:fixed;_position:absolute; _margin-top:expression(200+document.documentElement.scrollTop);filter:Alpha(Opacity=90);" id="PopNotice" >');
    }
    else 
    {
        document.writeln('<div  style="z-index:9;left:0;bottom:0; height:133px;width:200px;overflow:hidden;POSITION:fixed;*position:absolute; *top:expression(eval(document.body.scrollTop)+200);filter:Alpha(Opacity=90);" id="PopNotice" >');
    }
    document.writeln('<div style="z-index:9; POSITION: absolute; width:200px; height:133px; overflow:hidden;">');
    document.writeln('<span style="CURSOR: pointer;float:left;width:10px; height:10px; clear:none;margin:12px 0px 0px 174px;" onclick=closeNotice()></span>');
    document.writeln('</div> ');
    document.writeln('<table border="0" width="200" height="133" cellspacing="0" cellpadding="0">');
    document.writeln('<tr>');
    document.writeln('<td align="left" background="images/notice.jpg"></td>');
    document.writeln('</tr>');
    document.writeln('</table> ');
    document.writeln('</div>');
}
catch(err)
{
}
