function surfto(form) {
	var myindex=form.cat.selectedIndex
	if (form.cat.options[myindex].value != '') {
		location=form.cat.options[myindex].value;
	}
}

function fc(obj) {
	obj.className='f';
}

function bl(obj) {
	obj.className='c';
}

function date_today() {
	var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
	var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
 var d = new Date();
 
	dayname = weekday[d.getDay()] + " ";
	themonth = monthname[d.getMonth()] + " ";
	theday = d.getDate() + ", ";
	full_date = dayname + themonth + theday + d.getFullYear();
	
	document.write(full_date.fontsize(2));  
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}