/* (c) 2005 Koen Peters */

// JavaScript die een popup window opent en daarin een pagina of een afbeelding laadt.

var win;
var afb;

function openImgWindow(breedte, hoogte, doel) {
	afb = 'img/projecten/' + doel;
	
	var xMax = screen.availWidth;
	var yMax = screen.availHeight;
	
	var winWidth = breedte;
	var winHeight = hoogte; 
	var xOffset = (xMax - winWidth)/2
	var yOffset = (yMax - winHeight)/2;
	
	if( (typeof win=="object")  && !win.closed) hideWindow()           
	
	win = window.open(	'imgPopUp.jsp', 
						'text',
						'width=' + winWidth + 
						',height=' + winHeight + 
						',screenX=' + xOffset + 
						',screenY=' + yOffset + 
						',top=' + yOffset + 
						',left=' + xOffset + 
						',scrollbars=no' +
						',resizable=yes'
						,true);	  
	win.focus();   
}

function hideWindow() {
	if (win != null) win.close();
}