﻿$(document).ready(function () {
    //$("#MainDep").attr("onchange", "javascript:MainDep_Change();");
})
function DepID_Change() {
    var file = "/lib/se/getSeOptions.aspx";
    $("#Department").empty();
    $.post(
            file,
            {
                DepID: $("#DepID").val()
            },
            function (xml) {
                $("#Department").append(xml);
            }
        );
}
function search() {
    if ($("#DepID").val() == "") {
        alert("נא בחר סוג טיול");
        $("#DepID").focus();
        return false;
    }
    var link = "Package-Results.aspx?MainDep=" + $("#DepID").val() + "&Department=" + $("#Department").val() + "&TripMonth=" + $("#TripMonth").val();
    var SearchWin;
    window.open(link, "_self");
}
//-------------------------------
function testAgentFrm() {
    if (document.getElementById("AgentName").value == "") {
        alert("נא מלא קוד סוכן");
        document.getElementById("AgentName").focus();
        return false;
    }
    if (document.getElementById("AgentPassw").value == "") {
        alert("נא מלא סיסמה סוכן");
        document.getElementById("AgentPassw").focus();
        return false;
    }
}
