﻿function Comment() {
    if (document.getElementById("CommentButton") != null) {
        document.getElementById("CommentButton").click();
    }
}


function GetRadWindow() {
    var oWindow = null;
    if (window.radWindow) oWindow = window.radWindow;
    else if (window.frameElement.radWindow) oWindow = window.frameElement.radWindow;
    return oWindow;
}

function CloseRadWindow() {
    GetRadWindow().Close();
}

function Validate()
{
    if(document.getElementById("NameTextBox").value=="") {
        ShowMessage("שם - שדה חובה", true, "200px");
        return false;
    }

    if (document.getElementById("EmailTextBox").value == "") {
        ShowMessage("אימייל - שדה חובה", true, "200px");
        return false;
    }

    if (IsEmail(document.getElementById("EmailTextBox")) == "error") {
        ShowMessage("אימייל לא תקין", true, "200px");
        return false;
    }

    if (document.getElementById("MessageTextBox").value == "") {
        ShowMessage("שאלה - שדה חובה", true, "200px");
        return false;
    }
    
    if(document.getElementById("SendButton")!=null)
    {
        document.getElementById("SendButton").click();
    }
}


