


// search **********************************************************************
function searchFormSubmit(form) {
	if (form.aff[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=CL&dbquery=" + form.keywords.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.getDayString()+', '+today.getMonthString()+' '+today.getDate()+', '+today.getFullYear();
}

