﻿/* Search.js - JScript File
   Includes scripts for the search.aspx page
   History:
   08-XX-08     Sanjoy C.       Original Code
*/

function showCalendar(dateBoxNo)
{
    theVisFlag.value = "1";
    theHFdateBoxNo.value = dateBoxNo;
    setCalVis();
    return false;
}

function setCalVis()
{
    if (theVisFlag.value == "0")
    {
        theCalPanel.style.visibility = "hidden";
    }
    else
    {
        theCalPanel.style.visibility = "visible";
        if (theHFdateBoxNo.value == "1")
        {
            theCalPanel.style.top = theHFTopOff.value;
            theCalPanel.style.left = "385px";       //"550px";
        }
        else
        {
            theCalPanel.style.top = theHFTopOff.value;
            theCalPanel.style.left = "420px";       //"650px";
        }
    }
}
setCalVis();



function ClientValidateDate(source, clientside_arguments)
{   
  var theStartDate = theStartDateCtrl.value;
  var theEndDate = theEndDateCtrl.value;
  
  if (theStartDate == "" && theEndDate == "" )
  {
     clientside_arguments.IsValid=true;
  }
  else if (theStartDate != "" && theEndDate != "")
  {
    clientside_arguments.IsValid=true;
  }
  else
  {
    clientside_arguments.IsValid=false;
  }
}


