function handleSubmit()
    {
        //name is required
        if (document.getElementById("txtName").value == "") 
        {
            alert("Name is a required field. Please enter your name and try again.");
            document.getElementById("txtName").focus();
            return false;
        }

        if (document.getElementById("txtE-Mail").value == "")
        {
            alert("Please enter a valid E-Mail address.")
            document.getElementById("txtE-Mail").focus();
            return false;
        }   
        
        document.getElementById("hAction").value = "Clicked";
        document.frmContactUs.submit();
        return true;
    }
function emailobs (email) { 
	var string1 = email;
	var string2 = "@";
	var string3 = "ehlertfinancialgroup.com";
	var string4 = string1 + string2 + string3;
	document.location="mail" + "to:" + string4;
}
function GoogleMap (obj) {
	var test = document.getElementById(obj);
	if(test)test.innerHTML = '<iframe scrolling="no" height="350" frameborder="0" width="425" src="http://maps.google.com/maps?f=q&amp;hl=en&amp;geocode=&amp;q=470+Columbia+Dr+West+Palm+Beach,+FL+33409&amp;sll=37.0625,-95.677068&amp;sspn=46.764446,76.640625&amp;ie=UTF8&amp;s=AARTsJqJWjFmjC5bJOfgGPWdLUzxoHKwYg&amp;ll=26.722154,-80.096254&amp;spn=0.026832,0.036478&amp;z=14&amp;iwloc=addr&amp;output=embed" marginheight="0" marginwidth="0"/>';
}
function myScrollTo(element){
	var myObj = document.getElementById(element);
	window.scroll(0, myObj.offsetTop);
} 