// JavaScript Document

function vdate_select()
{	valid = true;
      var myOption = -1;
      for (i=document.selectForm.selectType.length-1; i > -1; i--) {
       if (document.selectForm.selectType[i].checked) {
          myOption = i; i = -1;
        }
      }
     if (myOption == -1) {
      alert("Please select an option of either Hotel, Photos or Guides." );
      valid = false;
     }
     return valid;  
}
