function writedate(){
	themonths=new Array("Jan.", "Feb.", "March", "April", "May", "June", "July", "Aug.", "Sept.", "Oct.", "Nov.", "Dec.")
	thedays=new Array("Sun.", "Mon.", "Tues.", "Wed.", "Thurs.", "Fri.", "Sat.")
	d=new Date();
	dstr="<DIV ID=leftdate>";
	dstr+=thedays[d.getDay()]+" ";
	dstr+=themonths[d.getMonth()]+" ";
	dstr+=d.getDate()+" ";
	dstr+=d.getFullYear()+" ";
	
	hr=d.getHours();
	if (hr>11 && hr<24){
		ampm="pm";
		}else{
		ampm="am";
		}
		
	if (hr>12){
		hr=hr-12;
		}
	
	mins=d.getMinutes();
	if (mins<10){
		mins="0"+mins;
		}
	dstr+=hr+":";
	dstr+=mins+ampm+" ";
	dstr+="</DIV>";
	document.write(dstr);
	}

function do_changeregion(new_uri){
	Sel_Ind = document.getElementById('regionselect').selectedIndex;
	newregion = document.getElementById('regionselect').options[Sel_Ind].value;
	if (newregion==''){return false;}
	window.location.href=new_uri+"changeregion="+newregion;
	}

function calendar_jump(){
	selInd=document.getElementById('CAL_MM').selectedIndex;
	themonth = document.getElementById('CAL_MM').options[selInd].value;
	selInd=document.getElementById('CAL_YY').selectedIndex;
	theyear = document.getElementById('CAL_YY').options[selInd].value;
	window.location.href="/showevents.php?year="+theyear+"&month="+themonth;
	}

//admin functions
function set_admin_prefs(get_addon, parsed_uri){
	window.location.href=parsed_uri+get_addon;
	}

function rollover(id, newsrc){
	target=document.images[id];
	target.src=newsrc;
	}

