function showDetails(iID, iWat, strStijl, strBestand){
	if (!strBestand) {strBestand = "detail.pop.asp";}
	var w = 800, h = 600;
	if (!iWat) {iWat = 0};
	if (!strStijl) {strStijl = ""};
	var mypage = strBestand + "?pr=" + iID + "&w=" + iWat + "&s=" + escape(strStijl);
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,status=yes'
	win = window.open(mypage, "_blank", winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	return false;
}

function showRefDetails(iID){
	var w = 640, h = 630;
	var mypage = "detailref.pop.asp?pr=" + iID;
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=auto,status=yes'
	win = window.open(mypage, "_blank", winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	return false;
}
