﻿//// JScript File
//function checkListValue()
//    {
//   
//        var CityCount=0;
//        var StateCount=0;
//        var lstState=document.getElementById("lstState");
//        var lstCate=document.getElementById("lstCategory");
//        //For State
//        for(var i=0;i<lstState.length;i++)
//        {
//            if(lstState.options[i].selected)
//            {
//                StateCount++;
//            }
//        }
//        if(StateCount==1)
//        {
//            alert("select one or more location");
//            return false;
//        }
//        //For Category
//        for(var i=0;i<lstCate.length;i++)
//        {
//            if(lstCate.options[i].selected)
//            {
//                CityCount++;
//            }
//        }
//        alert(CityCount);
//        if(CityCount==1)
//        {
//            alert("select one or more categories");
//            return false;
//        }
//}

//Function to Load download Document page
function downloadDesc(strJobID)
 {
    window.open("ViewDocuments.aspx?Job_ID=" + strJobID, "DocumentWindow", "height=600,width=800,menubar=yes,toolbar=yes,titlebar=yes,resizable=yes,scrollbars=yes");
 }
 //Function to Load Help File for the Copy and Paste Resume
 function OpenWindow()
 {
 window.open("HelpCopyPaste.aspx?","DocumentWindow", "height=600,width=800,menubar=yes,toolbar=yes,titlebar=yes,resizable=yes,scrollbars=yes");
 }
 