function gotomo(theForm) {
	selmo = "selmo";
	if ( (theForm != undefined) && (theForm != null) ) {
		selmo = "selmo"+theForm;
	}
//	alert(selmo);
	location.href = document.selmo.theselmo.value;
}

function gotoyr(theForm) {
	selyr = "selyr";
	if ( (theForm != undefined) && (theForm != null) ) {
		selyr = "selyr"+theForm;
	}
	location.href = document.selyr.theselyr.value;
}

function gotoBlogDate(ele) {
	location.href = ele.value;
}

function flipFlop(theID) {
	var theElement = document.getElementById(theID);
	if (theElement.className == 'cmoff'){
		theElement.className = 'cmon'
	}
	else { 
		theElement.className = 'cmoff'
	}
}

function Flopflip(theID) {
	var theElement = document.getElementById(theID);
	if (theElement.className == 'dmon'){
		theElement.className = 'dmoff'
	}
	else { 
		theElement.className = 'dmon'
	}
}

function checksearch() {
	if (document.search.SearchString.value == ""){
		alert("[ALERT]\n\nPlease type in something to search for."); 
		return false;
	}
}

