
$(document).ready(function () {
    $(".msg_icon").click(function (event) {
        $("#div_contactus").fadeToggle();
        event.stopImmediatePropagation();
    });
    $("#div_contactus").click(function (event) {
        $("#div_contactus").fadeIn();
        event.stopImmediatePropagation();
    });
    $("body").click(function (event) {
        if (event.isPropagationStopped() == false)
            $("#div_contactus").css("display","none"); //fade out is too slow makes the page jump due to the line below

        $("#contRep").css("display", "block");
    });
});
/*_____________________________________________________________________________________________________________*/
function toggle_newsemail(selection) {
    $("#contRep").css("display", "none");
    if (selection == "NEWS") {
        document.getElementById('NewsOrEmail').value = "NEWS";
        document.getElementById('lbl_newsemail').innerHTML = "Please fill this form to get updates by email:";
    }
    else {
        document.getElementById('NewsOrEmail').value = "EMAIL";

        document.getElementById('lbl_newsemail').innerHTML = "Please fill this form to contact a sales representative:";
    }
}
/*______________________________________________________________________________________________________*/

function validate_email(field, alerttxt) {
    with (field) {
        apos = value.indexOf("@");
        dotpos = value.lastIndexOf(".");
        if (apos < 1 || dotpos - apos < 2)
        { alert(alerttxt); return false; }
        else { return true; }
    }
}
/*______________________________________________________________________________________________________*/
function validate_form(thisform) {
    with (thisform) {
        if (validate_email(txt_email, "Not a valid e-mail address!") == false)
        { txt_email.focus(); return false; }
    }
    thisform.submit();
}
