<!--Proprietary function to handle script errors -->
onerror=handleErr
var txt=""
var textMsg

function handleErr(msg,url,l)
{
txt="There was an error on this page.\n\n"
txt+="Error: " + msg + "\n"
txt+="URL: " + url + "\n"
txt+="Line: " + l + "\n\n"
txt+="Click OK to continue.\n\n"
window.alert(txt)
return true
}


function submitForm(filterType)
{
	document.getElementById("filterType").value = filterType;
	document.forms["searchResults"].submit();
}

function dayplus() 
    {       	  
    	document.missedEmailAlert.dayScroller.value = '+';	
    	document.missedEmailAlert.submit();	    		
	}
	function dayminus() 
    {      	   	   	 
    	document.missedEmailAlert.dayScroller.value = '-';
    	document.missedEmailAlert.submit();		  		
	}