// JavaScript Document
<!--
	function prettylink(n) { 
		document.location.href=n; 
	} 

	function extlink(n) { 
		window.open(n);
	} 

	var now = new Date();
	var theday = now.getDate()-1;
	var themonth = now.getMonth();
	var theyear = now.getFullYear();
	
	function setDrops(theForm) {
	   theForm.day.selectedIndex = theday;
	   theForm.month.selectedIndex = themonth;

	   var found = 0;
	   for(i=1;i<theForm.year.options.length;i++) {
		  if (theForm.year.options[i].value == theyear) {
			 found = i;
			 break;
		  }
	   }
	   theForm.year.selectedIndex = found;
	}

function jumpMenu(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function showDate() 
   {
   ArrayWeek=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
   ArrayMonth= new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
   Date= new Date();
   var year= Date.getYear();
   if (year< 1000) year+= 1900;
   document.write(Date.getDate() + "  " + ArrayMonth[Date.getMonth()] + " " + year);
}


//-->