
function clearDefault(el) 
{
  if (el.defaultValue==el.value) el.value = "";
}


//note: this same code is in function OpenItMsg in file jscode.js
function doAllpoint()
{
    if (confirm('You are about to leave the Lusitania Savings Bank Web Site !\nClick OK to Continue'))
    {
		var x = document.forms.atmFindNearestForm;
		
		x.action = "http://locator.allpointnetwork.com/SearchResults.aspx";
		x.submit(); //form is not being submitted; code is being called from a <span>; therefore, force the form to submit		
	}
	
	
	return false;	
}


