// JavaScript Document
<!-- Function to verify the form

function noentry_2() {
	mt3=document.SearchAlumniMonth.Lkp_YearAlumniMonth.value;
	mt4=document.SearchAlumniMonth.Lkp_MonthAlumniMonth.value;
	mt5=document.SearchAlumniMonth.KeywordAlumniMonth.value;

	if ((mt3.length<1) && (mt4.length<1) && (mt5.length<1) ){
		showdiv_2();
			
	return false;
	}
	else { 
			SearchAlumniMonth.action = PagePath+"/components/AlumniNews/SearchResults.asp"
			SearchAlumniMonth.submit
		 }
}

function showdiv_2() { 
		if (document.getElementById) { // DOM3 = IE5, NS6 
		document.getElementById('hideShow').style.visibility = 'visible'; 
		} 
		else { 
		if (document.layers) { // Netscape 4 
		document.hideShow.visibility = 'visible'; 
		} 
		else { // IE 4 
		document.all.hideShow.style.visibility = 'visible'; 
		} 
		} 
		}  
		
		

// end -->