function i_chkSearchForm(oForm) {
	if(oForm.q.value != "") {
		if(oForm.q.value.match(/site:astonhill.ca$/) == null) {
			oForm.q.value += ' site:astonhill.ca ';
		}
	} else {
		alert('Enter text to search!');
		return false;
	}
}