
var openWindow_defaultWidth = 450;
var openWindow_defaultHeight = 600;
var newWindow;

function openWindow(theURL,winName,width,height) {
	width = (width == null) ? openWindow_defaultWidth: width;
	height = (height == null) ? openWindow_defaultHeight: height;
  	newWindow = window.open("","", "width=" + width + ",height=" + height);
  	if (newWindow != null) {
  		newWindow.document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">");
  		newWindow.document.write("<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"nl\" xml:lang=\"nl\"><head><title>" + winName + "</title>");
 	 	newWindow.document.write("<link href=\"../../css/popup.css\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\" />");	
 	 	newWindow.document.write("</head><body>");
 	 	newWindow.document.write("<body><div id=\"placement\">");	
	  	newWindow.document.write("<img src=\"" + theURL + "\" alt=\"" + winName + "\" onclick=\"javascript:window.close();\" />");		
	  	newWindow.document.write("<h1>" + winName + "</h1>");	
 	 	newWindow.document.write("</div></body></html>");
		newWindow.document.close();
	  }
}