<!--
var ie_true=nav_ver_true();

function web_end()
{  
if (login_message>0 && ie_true==2)
  {

    msg_pop();
  }
}

if (ie_true==2) { var msg_popup=window.createPopup(); }
var msg_width=167;
var msg_height=70;
var msg_exc=5;
var msg_max=1500;
var msg_poptop=0;
var screen_width=screen.width;
var screen_height=screen.height;
var screen_left=screen_width-msg_width-msg_exc;

function msg_pop()
{
  var temp1="";
  temp1+="<table border=1 bordercolor=#000000 cellpadding=0 cellspacing=0 style=\"border-collapse: collapse\" width="+msg_width+" height="+msg_height+">";
  temp1+="<tr><td width='100%' height='100%'>";
  temp1+="  <table border=0 cellpadding=0 cellspacing=0 width='100%'>";
  temp1+="  <tr><td height=10><img src='images/mail/win_top.gif' border=0></td></tr>";
  temp1+="  <tr><td height=58 background='images/mail/win_bg.gif'>";
  temp1+="    <table border=0 width='94%'>";
  temp1+="   <tr><td align=center height=35><img src='images/mail/bnew.gif' align=absmiddle border=0> <font color=white size=2>ÄúÓÐ<b>£¨</b><font color=red>"+login_message+"</font><b>£©</b>Ìõ¶ÌÐÅÏ¢</font></td></tr>";
  temp1+="    </table>";
  temp1+="  </td></tr>";
  temp1+="  </table>";
  temp1+="</td></tr>";
  temp1+="</table>";
  msg_popup.document.body.innerHTML=temp1;
  msg_pop_show();
}

function msg_pop_show()
{
  if(msg_poptop>msg_max)
  { clearTimeout(msg_time); msg_popup.hide(); return; }
  if (msg_poptop<=(msg_height+msg_exc))
  { msg_popup.show(screen_left,screen_height-msg_poptop,msg_width,msg_poptop-msg_exc); }
  else if (msg_poptop>=(msg_max-msg_height))
  { msg_popup.show(screen_left,screen_height+msg_max-msg_max,msg_width,msg_max-msg_poptop); }
  msg_poptop+=msg_exc;
  var msg_time=setTimeout("msg_pop_show();",50);
}

function nav_ver_true()
{
  if (navigator.appName!="Microsoft Internet Explorer") { return 0; }
  var nav_ver=navigator.appVersion;
  var sys_dim=nav_ver.split(";");
  if (sys_dim.length<3) { return 1; }
  var tmp1=sys_dim[1];
  tmp1=tmp1.replace(/\ /gi,"")
  tmp1=tmp1.replace(/\MSIE/gi,"")
  tmp1=tmp1.substring(0,3);
  var tn=tmp1.substring(0,1);
  if (tn<5) { return 1; }
  if (tn==5)
  { if (tmp1!="5.5") { return 1; } }
  return 2;
}
-->