// This javascript file contains functions used throughout the acns.msu.edu web site.// It should be loaded in the head section of each html page.// This function appends the search query so that Google restricts the search to the // acns.msu.edu domain.function acnsGoogleSearch() {	var query = document.getElementById("q");	if (query.value == '') {		alert('Enter words to search for first, please!');		return false;	}	query.value = query.value+' site:acns.msu.edu';	return true;}// This function prepends "ACNS Web: " to the subject of the form submission.// This will enable filtering and tracking of messages from the web site in the Remedy tracking system.function acnsContactSubject() {	var subject = document.getElementById("subject");	if (subject.value == '') {		return false;		}	subject.value = 'ACNS Web: '+subject.value;	return true;}