function ExplorerFix() 
	{ 
	for (a in document.links) document.links[a].onfocus = document.links[a].blur; 
	}


function knopon(id)
	{
	document.getElementById(id).style.backgroundImage = 'url(img/bg_knopselected.gif)';
	}

function knopoff(id)
	{
	document.getElementById(id).style.backgroundImage = '';
	}

function over(id, filename)
	{
	//img = eval('document.'+id);
	img = document.images[id];
	img.src = 'phpimg/navitem.png?t=2&s='+filename;
	}

function out(id, filename)
	{
	//img = eval('document.'+id);
	img = document.images[id];
	img.src = 'phpimg/navitem.png?t=1&s='+filename;
	}

function navOver(id)
	{
	//img = eval('document.navsel'+id);
	//img.src = 'img/selectiecirkel.gif';
	//alert(id);
	document.getElementById('td'+id+'a').style.backgroundColor = '#F7D676';
	document.getElementById('td'+id+'b').style.backgroundColor = '#F7D676';
	}

function navOut(id)
	{
	//img = eval('document.navsel'+id);
	//img.src = 'img/pixel.gif';
	document.getElementById('td'+id+'a').style.backgroundColor = '#ffffff';
	document.getElementById('td'+id+'b').style.backgroundColor = '#ffffff';
	}

function go(url)
	{
	document.location = url;
	}

function media(pid, lid, nr) 
	{
	window.open(basehref+'media?prod_id='+pid+'&langid='+lid+'&nr='+nr, 'bmamedia', "width=400,height=400,toolbar=no,focus,menubar=no,location=no,scrollbars=no,resizable=no,status=no");
	}

function popUp(url,width,height,name) 
{
OpenWin=window.open(url, name, "width="+width+",height="+height+",toolbar=no,focus=yes,menubar=no,location=no,scrollbars=yes,resizable=no,status");
OpenWin.focus();
}


function requestinfo(id)
{

url = basehref+'contactform?s=form&id='+id;
width = 320;
height = 554;
OpenWin=window.open(url, 'inforequest', "width="+width+",height="+height+",toolbar=no,focus=yes,menubar=no,location=no,scrollbars=no,resizable=no,status");
OpenWin.focus();
}