var linkerkolom_img ="";
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
function doSearch()
{
  var el = document.getElementById("SEARCHTXT");

  if (el!=null) if (el.value != null) if (el.value != "") {
      to(63 ,"SEARCH="+el.value);
  }
}
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
function keydown(e) {
  if (e==null) return;
  try 
  {
    var keyCode = e.keyCode;
  }
  catch(e) 
  {
    alert(e.message);
  }
  if (keyCode==null) keyCode=e.which;
  if (keyCode==13) {
    try 
    {
	    if (e.cancelBubble!=null) e.cancelBubble=true;
	    if (e.returnValue!=null) e.returnValue=false;
	    if (e.keyCode!=null) e.keyCode=0;
	    if (e.which!=null) e.which=0;
    }
    catch(e)
    {
    }
    doSearch();
    return false;
  };
}

function changeKolomImg(foto)
{
	foto = ""+foto;
	if (foto != null)
	{
		if (foto != "")
		{
			var el = document.getElementById("linkerfoto");
			if (el != null)
			el.src=foto;
		}
	}
}
if (!window.isEditor)
{
	window.onload = function()
	{
		changeKolomImg(linkerkolom_img);
		initPulldown();
	}
}

function initPulldown()
{
	var base = document.getElementById("top-nav");
	if (base != null)
	{
		var list = base.getElementsByTagName("li");
		for (var i = 0; i < list.length; i++)
		{
			list[i].onMouseOver=function()
			{
				
				
			}
		}
	}
}
