self.defaultStatus="Olympa SysteemBouw"

function openImageWindow(imageSrc,imageTitle) { 
	var w = 5, h = 5; 
	if (document.all) { 	
		w = document.body.clientWidth; 
		h = document.body.clientHeight; 
	} 
	else if (document.layers) { 
		w = window.innerWidth; 
		h = window.innerHeight; 
     	} 
	
	var popW = 5, popH = 5; 
	var leftPos = (w-popW)/2, topPos = (h-popH)/2; 

	fileName = escape(imageSrc);
	myWindowHandle = window.open(fileName,'windowName','directories=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no,copyhistory=no,top=' + topPos + ',left=' + leftPos);
}


