// open IMAGEWINDOW
// SAMPLE LINK: <a href="image.jpg" onclick="openWindow(this.href,'Wallpaper 800x600',800,600);return false;"></a>

var newWindow;
var protocol=location.protocol;

function openWindow(newURL, newTitle, w, h) {
	var baseURL='http://www.jjfotografie.nl/toon_foto_2.html?';
	baseURL += escape(newURL);
	baseURL += "&" + escape(newTitle);

	var winLeft = (screen.width - w) / 2;
	var winTop = ((screen.height - 50)- h) / 2;

	if(newWindow && !newWindow.closed) {
		newWindow.close();
	} 
	
	newWindow = window.open(baseURL,'Window','width='+w+',height='+h+',top='+winTop+',left='+winLeft+',scrollbars=no'); 
}


function popWindow(URL) {
var baseURL='http://www.jjfotografie.nl/toon_foto_2.html?';
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=800,height=800');");
}
