function Zoekformulier()
{
  if(document.zoeken.soort[0].checked == true)
  {
    document.zoeken.action ="http://www.webadresboek.nl/search/"+document.zoeken.q.value+"/";
  }
  else if(document.zoeken.soort[1].checked == true)
  {
    document.zoeken.action ="http://www.google.webadresboek.nl/google.php?q="+document.zoeken.q.value+"&sa=Google+zoeken&client=pub-1174207505750221&forid=1&ie=ISO-8859-1&oe=ISO-8859-1&cof=GALT%3A%23202020%3BGL%3A1%3BDIV%3A%2380C0FC%3BVLC%3A202020%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3AFFFFFF%3BALC%3A000000%3BLC%3A000000%3BT%3A404040%3BGFNT%3A202020%3BGIMP%3A202020%3BFORID%3A11&hl=nl";
  }
  else if(document.zoeken.soort[2].checked == true)
  {
    document.zoeken.action ="http://www.dmoz.webadresboek.nl/search/"+document.zoeken.q.value+"/";
  }
  else 
  {
    document.zoeken.action ="http://www.webadresboek.nl/search/"+document.zoeken.q.value+"/";
  }
}

function ShowSearchengine(id)
{
	document.getElementById("webzoeken").style.display = "none";
	document.getElementById("googlezoeken").style.display = "none";
	
	switch(id)
	{
		case "webzoeken":
			document.getElementById(id).style.display = "";
			break;
		
		case "googlezoeken":
			document.getElementById(id).style.display = "";
			break;
		}
}

function replaceurl()
{
    document.zoeken.action ="http://www.webtop20.nl/search/"+document.zoeken.categorie.value+"/";
}
