// JavaScript Document


function OnSubmitForm()
{
  if(document.myform.cid[0].selected == true)
  {
    document.myform.action ="b-elenco-crociere.aspx";
  }
  else
  if(document.myform.cid[1].selected == true)
  {
    document.myform.action ="b-notizie.aspx";
  }
 
  else
  if(document.myform.cid[2].selected == true)
  {
    document.myform.action ="b-notizie.aspx";
  }
   else
  if(document.myform.cid[3].selected == true)
  {
    document.myform.action ="b-notizie.aspx";
  }
  return true;
}