function validate()
{
	   var DestIsBlank=false;
	   var BudgetIsBlank=false;
	   var DurationIsBlank=false;
	   var CategoryIsBlank=false;
	   var MonthIsBlank=false;
	   
	   
      if (document.getElementById("ctl04_ctl00_UcAJDestinationsText1_txtDestination").value=="" || document.getElementById("ctl04_ctl00_UcAJDestinationsText1_txtDestination").value.toLowerCase().indexOf("type here") > -1 )
      {
                 DestIsBlank=true;
	             document.getElementById("ctl04_ctl00_UcAJDestinationsText1_txtDestination").value='';       
      }
	   
      if (document.getElementById("ctl04_ctl00_lstDuration").value=="" || document.getElementById("ctl04_ctl00_lstDuration").value.toLowerCase()=="all")
      {
                 DurationIsBlank=true;
      }

      if (document.getElementById("ctl04_ctl00_lstMonth").value=="" || document.getElementById("ctl04_ctl00_lstMonth").value.toLowerCase().indexOf("all") > -1)
      {
                 MonthIsBlank=true;
      }

      if (document.getElementById("ctl04_ctl00_lstCategory").value=="" || document.getElementById("ctl04_ctl00_lstCategory").value.toLowerCase()=="all")
      {
                 CategoryIsBlank=true;
      }

      if (document.getElementById("ctl04_ctl00_lstBudget").value=="" || document.getElementById("ctl04_ctl00_lstBudget").value.toLowerCase()=="all")
      {
                 BudgetIsBlank=true;
      }


     if (DestIsBlank==true && BudgetIsBlank==true && DurationIsBlank==true && CategoryIsBlank==true && MonthIsBlank==true)
     {
               alert("You must select at least one search criteria.");
               return false;
     }

     return true;
}


function setRDOs(ClickedButton)
{
if (document.getElementById("ctl04_ctl00_lstDuration"))
		document.getElementById("ctl04_ctl00_lstDuration").options[0].selected = true;

     return true;
}