// JavaScript Document

function zoekenByEnter(trefwoord)
{
	if (window.event) keycode = window.event.keyCode;
    else if (e) keycode = e.which;
   
    if (keycode == 13){
		_zoeken(trefwoord);
	}
}

function zoeken(trefwoord)
{
	_zoeken(trefwoord);
}

function _zoeken(trefwoord)
{
	document.location.href = "/zoeken/"+document.getElementById(trefwoord).value.toLowerCase();
}

function searchEnter(field, standard)
{
	if(field.value == standard)
	{
		field.value = "";
		//field.style.fontStyle = "normal";
	}
}

function searchBlur(field, standard)
{
	if(field.value == "")
	{
		field.value = standard;	
		//field.style.fontStyle = "italic";
	}
}