
function onOver(src,clrOver) {
 if (!src.contains(event.fromElement)) {
  src.style.cursor = 'hand';
  src.bgColor = clrOver;
	}
  }

function onOut(src,clrIn) {
	if (!src.contains(event.toElement)) {
     src.style.cursor = 'default';
     src.bgColor = clrIn;
	}
  }

function surfto(form) {
	var myindex=form.dest.selectedIndex;
	window.open(form.dest.options[myindex].value,"_top");
	form.dest.selectedIndex=0;
	}

	today = new Date();
	date = today.getDate();
	month = today.getMonth();
	year = today.getYear();

	if (month == 0) monthName = "January"
	else if (month == 1) monthName = "February"
	else if (month == 2) monthName = "March"
	else if (month == 3) monthName = "April"
	else if (month == 4) monthName = "May"
	else if (month == 5) monthName = "June"
	else if (month == 6) monthName = "July"
	else if (month == 7) monthName = "August"
	else if (month == 8) monthName = "September"
	else if (month == 9) monthName = "October"
	else if (month == 10) monthName = "November"
	else monthName = "December"
	if (year == 99) yearName = "1999"
	else if (month == 00) yearName = "2002"
	else yearName = "2002"
//	document.write(date + " " + monthName + " " + yearName);

function open_win(msg) 	{
	window.open(msg,"NewWindow","scrollbars=yes,status=yes,height=400,width=600,left=300,top=80");
	}

function open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}
