if (!self.disabled)
{
	var naar = location.href.substring(location.href.lastIndexOf("/")+1);
	if ((top != self.parent))
	{
//		top.location.replace('index.html?' + naar);
		top.location.href = 'index.html?' + naar;
	}
}


if (navigator.appVersion.charAt(0) > 4 || 
	navigator.userAgent.indexOf('MSIE') != -1) top.document.title = self.document.title;

if (!parent.over) parent.over = function () {};
if (!parent.uit) parent.uit = function () {};


var compatibility = null;
function pop(url)
{
	if (compatibility && !compatibility.closed)
		compatibility.location.href = url;
	else
		compatibility = window.open(url,'compatibility','height=500,width=700,scrollbars=yes,resizable=yes,toolbar=yes');
	if (window.focus) compatibility.focus();
}