// Original:  Eric King (eric_andrew_king@hotmail.com) 
// Web Site:  http://redrival.com/eak/ 

// Begin
function NewWindow(mypage, myname, w, h, alt, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+', ALT='+alt+', scrollbars='+scroll+',resizable'
win2 = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win2.window.focus(); }
}
//  End 


// zelf aangepast

function openPictureWindow_Fever(imageName, w, h, alt, scroll) 
{
var winl = (screen.width -w) / 2;
var wint = (screen.height -h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
newWindow = window.open("","newWindow", winprops);
newWindow.document.open();
newWindow.document.write('<HTML><TITLE>'+alt+'</TITLE><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><META NAME="ROBOTS" CONTENT="INDEX,FOLLOW"><BODY bgcolor="#FFFFFF" LEFTMARGIN="0" TOPMARGIN="0" MARGINHEIGHT="0" MARGINWIDTH="0" onBlur="self.close()">'); 
newWindow.document.write('<IMG SRC='+imageName+' WIDTH='+w+' HEIGHT='+h+' ALT='+alt+'>'); 
newWindow.document.write('</BODY></HTML>');
newWindow.document.close();
newWindow.focus();
}

