/**建立广告框架**/

var NoteWin_Timer0=0;
var NoteWin_Timer1=0;
var myDate=new Date();
myDate.setFullYear(2010,0,4);
var today = new Date();
var swf_Width=1024;
var swf_Height=96;
var swf_FileName='Flash/Tjf-2.swf';

//	alert(myDate+'\n'+today);
if (myDate>today) {
  document.write('<DIV id="sc_NotWin" style="DISPLAY: none">');
  document.write('<iframe frameborder=0 height='+swf_Height+' width='+swf_Width+' scrolling=no name="stjxx_NotWin"></iframe>');
  document.write('</DIV>');
  Mk_NoteWin();
}
//var Affiche_Win=window.open('http://10.51.8.10/WebApplication1/unloaddetail.aspx','公告栏','Width=0,Height=0,Top=1,Left=1,Scrollbars=yes,Resizable=yes,Toolbar=no,Directories=no,Location=no,Menubar=no');
//document.write('<iframe src="http://10.51.8.10/WebApplication1/unloaddetail.aspx" frameborder="0" style="width:0px;height:0px"></iframe>');
//alert(Affiche_Win.document.title);

function Mk_NoteWin(){
  var Doc0 = stjxx_NotWin.document.open("text/html","replace");
  Doc0.writeln('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">');
  Doc0.writeln('<HTML><HEAD><TITLE>广告</TITLE>');
  Doc0.writeln('<meta http-equiv="Content-Type" content="text/html; charset=gb2312">');
  Doc0.writeln('<body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 bgcolor=#FFFFFF>');
  Doc0.writeln('<embed src="'+swf_FileName+'" type="application/x-shockwave-flash" width="'+swf_Width+'" height="'+swf_Height+'"></embed>');
  Doc0.writeln('</body></HTML>');
  Doc0.close;
  Display_NoteWin(1);
//  NoteWin_Timer1=setTimeout("Display_NoteWin(1)",3000);
  NoteWin_Timer0=setTimeout("Display_NoteWin(0)",25000);
}

function Display_NoteWin(v){	
  var NoteWin_Obj; 
  NoteWin_Obj=eval("sc_NotWin");
  if(v==0) {
    NoteWin_Obj.style.display="none";
    clearTimeout(NoteWin_Timer0);
  }
  else {
    NoteWin_Obj.style.display="";
//    clearTimeout(NoteWin_Timer1);
  }
}
