function openClaimPage()
{
   var oObj = document.getElementById('claimType');
   tVal = oObj.options[oObj.selectedIndex].value;
   if (tVal == "theftLoss")
      window.location = "claims/theft_loss_home_contents.htm";
   if (tVal == "damage")
      window.location = "claims/accidental_damage_home_contents.htm";
   if (tVal == "property")
      window.location = "claims/property_structure_damage.htm";
}

function jsSubmitForm()
{
   var oForm = document.getElementById('frmClaim');
   alert("You will now be transferred to the Endsleigh Insurance Services Limited web site, where your claim details will be processed");
   oForm.submit();
}