function getContactFormPropertySheetValues()
{
    return $("txtContactTargetEmail").value;
}

function validateContactFormPropertySheetValues()
{
    if (!isEmail($("txtContactTargetEmail").value)) {
        alert("Please check the email address");
        return false;
    }
    return true;
}
