


// search **********************************************************************
function searchFormSubmit(form) {
	if (form.searchSelect[1].checked == true) {
		// this address needs to be changed once search is set up
		window.location = "http://www.newslibrary.com/nlsearch.asp?search_mode=all&action=search&date_mode=year&year=last+180+days&sort=d%3Ah&nitems=10&region=kc&dbquery=" + form.query.value;
		return false;
	} else if (form.searchSelect[2].checked == true) {
		window.location = "http://www.diariolaestrella.com/cgi-bin/mi/overture/overture.pl?Keywords=" + form.sf_pubsys_story.value;
		return false;
	}
	return true;
}
// end search ******************************************************************



function today_string() {
	// dependant on date functions defined in mi-utilities.js
	var today = new Date();
	return today.spanishDay()+', '+today.getDate()+' de ' + today.spanishMonth(true)+' del  '+today.getFullYear();
}


