 function mouseOverFunction(obj){
 	obj.style.background = "#f0f0f0";
 	obj.style.cursor = "pointer";
 }
 
 function mouseOutFunction(obj){
 	obj.style.background = "#ffffff";
 	obj.style.cursor = "auto";
 }
function f_HighLightRow(x){
	alert(x);
}

function f_OpenFile(x){
	window.open(x);
}

function f_SetMethod(myForm, vMethod){
	//alert("here " + vMethod);
	myForm.method.value = vMethod;
	myForm.submit();
}
function f_ForgotPass(myForm){
	//alert(myForm.loginAcct.value);
	if(myForm.loginAcct.value == ""){
		alert("Please enter your valid account number in the 'Account' field!");
		myForm.loginAcct.focus();
		return;
	}
	
	if(confirm("carrolltownshipauthority.com will send Account Login information to your EMAIL account, continue?")){
		f_SetMethod(myForm,"sendLoginInfo");
	}
}
