function openImage(url, w , h) {
	h2 = h+40;
	win = window.open("", "", "statusbar=no, toolbar=no, width=" + w + ", height=" + h2);
	
	win.document.write("<HTML><HEAD><TITLE></TITLE><link rel='stylesheet' style='css/text' href='styles.css'></HEAD><body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>");
	win.document.write("<img src='images/sce/" + url + "' width='" + w + "' height='" + h + "'><BR>");
	win.document.write("<BR><a href='javascript:window.close()'>&nbsp;&nbsp;&nbsp;Close Window</a></font><BR>");
	win.document.write("</body></html>");	
	
}
