var newWin = null; 

function isImage() {
	if (document.images)
		return true;
	else
		return false;
}

gImageCapableBrowser = isImage();

function open_new_window(width, height, url) {
	
	if (gImageCapableBrowser) {
	
	if (newWin != null && !newWin.closed) newWin.close(); 	

	newWin = open("","newWin","width=" + width + ",height=" + height + ",left=10,top=10,scrollbars=no,menubar=no,toolbar=no,titlebar=yes");

	// open new document 
	newWin.document.open();

	// Text of the new document
	// Replace your " with ' or \" or your document.write statements will fail
	newWin.document.write("<html><head><title>Enlarged Picture</title></head>");
	newWin.document.write("<body onBlur=\"window.close();\" bgcolor=\"#FFFFFF\">");
	newWin.document.write("<img border=0 src=\"" + url + "\" alt=\"Antoinette Drouart conducting the Bamboo Basket Flower Arrangement Workshop\" /><br>");
	newWin.document.write("</body></html>");

	newWin.focus(); 
	}
}

