var MENU_POS1 = {
	'height' : [25, 25, 25, 25, 25],
	'width' : [125, 200, 125, 125, 125],
	'block_top' : [0, 25, 5, 0, 0],
	'block_left' : [25, 0, 198, 120, 120, 120],
	'top' : [0, 25, 25, 25, 25],
	'left' : [126, 0, 0, 0, 0],
	'hide_delay' : [200, 200, 200, 200, 200],
	'expd_delay' : [200, 200, 200, 200, 200],
	'pixel_path' : '/template/menu/pixel.gif',
	'align' : 'left' // left, center, right
};

function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}
function resizePusher() {
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
  
  oheight = document.getElementById("container").offsetHeight;
  oheight = oheight + 285;
  
	if(oheight < myHeight) {
		document.getElementById("container").style.height = (myHeight - 275) + 'px';
	}
}
 
function disableEnterKey(e)
{
     var key;

     if(window.event)
          key = window.event.keyCode;     //IE
     else
          key = e.which;     //firefox

	if(key == 13) {
		document.getElementById('highlightInput').value = document.getElementById('q').value;
		document.zoekform.submit();
	 } else {
          return true;
	}
}
window.onload = function() {
	resizePusher();
}
window.onresize = function() {
	resizePusher();
}
