function submitdata(selfname) 
{
  /* Werte aus Formular auslesen und in newURL schreiben */
  var paramstr = "?start=0";
  var newURL = "";
  var searchstr = "";

  if (document.options.sorttype.value != "AnzBew") { paramstr += "&sorttype="+document.options.sorttype.value; }
  if (document.options.limit.value != 5) { paramstr += "&limit="+document.options.limit.value; }
  paramstr += "&minbew="+document.options.minbew.value;
  if (document.options.global.checked) { paramstr += "&global=1"; }
  if (document.options.erhaeltlich.checked) { paramstr += "&erhaeltlich=1"; }
  if (document.options.aramid.checked) { paramstr += "&aramid=1"; }
  if (document.options.polyester.checked) { paramstr += "&polyester=1"; }
  if (document.options.cp.checked) { paramstr += "&cp=1"; }
  if (document.options.pe.checked) { paramstr += "&pe=1"; }
  if (document.options.pu.checked) { paramstr += "&pu=1"; }	  
  if (document.options.polyamid.checked) { paramstr += "&polyamid=1"; }
  if (document.options.zyex.checked) { paramstr += "&zyex=1"; }
  if (document.options.ng.checked) { paramstr += "&ng=1"; }
  if (document.options.mono.checked) { paramstr += "&mono=1"; }
  if (document.options.cw.checked) { paramstr += "&cw=1"; }
  if (document.options.cww.checked) { paramstr += "&cww=1"; }
  if (document.options.mf.checked) { paramstr += "&mf=1"; }
  if (document.options.struct.checked) { paramstr += "&struct=1"; }
  if (document.options.tic.checked) { paramstr += "&tic=1"; }
  if (document.options.tif.checked) { paramstr += "&tif=1"; }
  if (document.options.hyb.checked) { paramstr += "&hyb=1"; }
  if (document.options.rib.checked) { paramstr += "&rib=1"; }
  if (document.options.details[0].checked) { paramstr += "&details="+document.options.details[0].value; }
  if (document.options.details[1].checked) { paramstr += "&details="+document.options.details[1].value; }
  if (document.options.search.value!="") { paramstr += "&search="+escape(document.options.search.value); }

  newURL = selfname+paramstr;
  window.location.href = newURL;
}
