window.onResize=ns_reload;function ns_reload(e){location.reload();}function CheckBrowser(){  this.win=(navigator.userAgent.indexOf("Win") >= 0)?1:0;  this.ver=navigator.appVersion;  this.dom=document.getElementById?1:0;   this.ie5=(this.ver.indexOf("MSIE")>-1 && this.dom)?1:0;   this.ie4=(document.all && !this.dom)?1:0;  this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;  this.ns4=(document.layers && !this.dom)?1:0;  this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5);  return this;}function GetDivObject(obj,cont){  cont=(!cont) ? '':'document.'+cont+'.';  this.el=bw.dom?document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?eval(cont+'document.'+obj):0;  this.css=bw.dom?document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?eval(cont+'document.'+obj):0;  this.scrollHeight=bw.ns4?this.css.document.height:this.el.offsetHeight;  this.clipHeight=bw.ns4?this.css.clip.height:this.el.offsetHeight;  this.ChangeDiv = ChangeDiv;  this.x;  this.y;   this.obj = obj + "Object";  eval(this.obj + "=this");  return this;}function ChangeDiv(msg_){  var msg=msg_;  if(bw.ns4){    this.el.document.open("text/html");    this.el.document.write(msg);    this.el.document.close();  }else{    this.el.innerHTML = msg;  }}function OpenWin(link, wnum, hnum){    var NewWindow = window.open(link,"NewWin",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width='+wnum+',height='+hnum);  }