function gotoApplication()
{
   var form = document.forms[0];
   for ( i=0; i<form.elements.length; i++)
   {
     if ( form.elements[i].checked)
     {
       form.submit();
       return;
     }
   }
   alert('Please, check a radio button to select the camp / accomodation type for yourself.');
}
