<!-- Afschermen voor oude browsers


function NewWindow(mypage,myname,w,h,scroll,pos){



	var node = document.createElement('div');
	node.id = 'menuover';	
	//node.onclick = function () { this.parentNode.removeChild(this); };

  	var menuhtml = '<div class="popup_popunder" id="popup_popunder"></div><div id="popup_content" class="popup_content"><table cellpadding="0" cellspacing="0" style="width:' + w + 'px;border:#000000 1px solid;" align="center"><tr><td class="sluiten"><div onClick="closeDiv();">CLOSE X</div></td></tr><tr><td><iframe src="' +  mypage + '" bgcolor="#b8b8b8" scrolling="no" name="menuframe" id="menuframe" width="' + w + '" height="' + h + '" frameborder="0" border="0"></iframe></td></tr></table></div></div>';
 	
	node.innerHTML=menuhtml;
	document.body.appendChild(node);
	
	var scrolhoogte = getTop();

	//heightfixxeren
	document.getElementById('popup_content').style.paddingTop = (scrolhoogte + 40 ) + 'px';
	document.getElementById('popup_popunder').style.height = document.getElementById('div_alles').offsetHeight + 'px';


return false;
	
}

var props = new Array(
	'scrollTop'
);



function closeDiv() {

	document.getElementById('menuover').parentNode.removeChild(document.getElementById('menuover'));

}


function getTop()
{

	for (var i=0; i<props.length;i++)
	{
	  if (document.documentElement && document.documentElement.scrollTop)
		theTop = document.documentElement.scrollTop;
	  else if (document.body)
		theTop = document.body.scrollTop
	  else
		theTop = document.documentElement[props[i]];
	}

	return theTop;
}




function showNFO(mypage,myname,w,h,scroll,pos){


	var node = document.createElement('div');
	node.id = 'menuover';	
	node.onclick = function () { this.parentNode.removeChild(this); };

  	var menuhtml = '<div class="popup_popunder" id="popup_popunder"></div><div id="popup_content" class="popup_content"><table cellpadding="0" cellspacing="0" style="width:' + w + 'px;border:#000000 1px solid;" align="center"><tr><td class="nav_right_header" style="height: 28px;">&nbsp;</td>   <td class="nav_right_header" style="height: 28px;">View NFO</td><td class="nav_right_header" style="height: 28px; width:5px;" style="text-align:right;padding-right:3px;"><a href="javascript:;" onclick="javascript:close_nzb();"><img src="images/sluit.jpg" border="0"></a></td>  </tr><tr><td colspan="3"><iframe src="' +  mypage + '" bgcolor="#b8b8b8" scrolling="yess" name="menuframe" id="menuframe" width="' + w + '" height="' + h + '" frameborder="0" border="0"></iframe></td></tr></table></div></div>';
 	
	node.innerHTML=menuhtml;
	document.body.appendChild(node);
	
	var scrolhoogte = getTop();

	//heightfixxeren
	document.getElementById('popup_content').style.paddingTop = (scrolhoogte + 40 ) + 'px';
	document.getElementById('popup_popunder').style.height = document.getElementById('div_alles').offsetHeight + 'px';


return false;
	
}


// Einde afscherming -->