// JavaScript Document
<!-- Begin
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//  End -->

<!-- Begin
function monthPage() {
today = new Date();
m = new Array(
"eve_jan.html","eve_feb.html",
"eve_mar.html","eve_apr.html","eve_may.html",
"eve_jun.html","eve_jul.html","eve_aug.html",
"eve_sep.html","eve_oct.html",
"eve_nov.html","eve_dec.html"
);
window.location = m[today.getMonth()];
}
//  End -->

<!--
function calcHeight()
{
  //find the height of the internal page
  var the_height=
    document.getElementById('frame').contentWindow.
      document.body.scrollHeight;

  //change the height of the iframe
  document.getElementById('frame').height=
      the_height;
}
//-->
<!--
function showhide(id){ 
if (document.getElementById){ 
obj = document.getElementById(id); 
if (obj.style.display == "none"){ 
obj.style.display = ""; 
} else { 
obj.style.display = "none"; 
} 
} 
} 
// -->

<!--

function Lvl_jumpMenuWin(el,y,q) { //v1.1 4LevelWebs
  var O=el.options[el.selectedIndex].value,ww,hh;if(y)el.selectedIndex=0;
  var er=O.charAt(O.length),as=O.substring(O.length,er),a=as.split('~');
  var tp=",top=",tr=",toolbar=",ts=",status=",ln=",location=",mb=",menubar=",ss=",scrollbars=",re=",resizable=",fs=",fullscreen=";
  var sw=(screen.width),sh=(screen.height);
  var u=a[0],n=a[1],WW=a[2],HH=a[3];
  var t=(a[6]==0)?tr+0:tr+1,l=(a[7]==0)?ln+0:ln+1,s=(a[8]==0)?ts+0:ts+1,z=(a[13]==0)?fs+0:fs+1;
  var m=(a[9]==0)?mb+0:mb+1;x=(a[10]==0)?ss+0:ss+1,r=(a[11]==0)?re+0:re+1,c=a[12];
   if (a[12]==0){ww=(sw)}else{ww=(sw-WW)/2}
   if (a[12]==0){hh=(sh)}else{hh=(sh-HH)/2}
  var j=(c==1)?tp+hh:tp+a[5],k=(c==1||c==2)?",left="+ww:",left="+a[4];if(q==0)q='top';
  var W=(a[2]==0)?0:",width="+WW,H=(a[3]==0)?0:",height="+HH,f=W+=H+=j+=k+=t+=l+=s+=m+=x+=r+=z;
   if(u)if(a[14]==1){u=eval("parent.frames[\'"+q+"\'].location='"+u+"'")}else{window.open(u,n,f)}el.blur();
}
//-->