var sent = false;

function submitForm(reallysubmit)
{
   // if( sent ) return;

   if( document.getElementById )
   {
	  if( document.getElementById('locationid') ) ;

   }

   if( document.forms.search )    
   {
      if( reallysubmit )
      {
         document.forms.search.send.value = 1;
      }

      document.forms.search.submit();
	  document.forms.search.locationid.disabled=true;
   }

   sent = true;
}