// JavaScript Document

function validateAndSubmitSearch(form) {
	if(form.search.value == "Search Chico State" || form.search.value == "") {
		// no search submitted on "Search Chico State" or empty searches
		form.search.focus() // places cursor back in the search field
		return false //stops the form from being submitted
	} else {
		//form.search.value = form.search.value + " site:www.csuchico.edu/dss/" //search only usrv site
		return true
	}
}

function selectInteriorImage() {
	var randNum = Math.round(Math.random()*5)+1
	document.write("<img src='http://www.csuchico.edu/semp/images/interior/" + randNum + ".jpg' alt='Student Employment photo' name='interior_photo' width='180' height='238' border='0' id='interior_photo'/>")
	//alert(randNum)
}
