// JavaScript Document
function openImage(imgUrl, w, h){
	w +=50;
	h +=50;
	
	if (w<300){
		w=300;
	}
	if (h<200){
		h=200;
	}
	newwindow2 = window.open('',"imagewindow","menubar=1,resizable=1,scrollbars=1,width="+w+",height="+h);

	var tmp = newwindow2.document;
	tmp.write('<html><head><title>'+imgUrl+'</title></head><body>');
	tmp.write('<table height="100%" width="100%"><tr><td align="center" valign="middle">');
	
	tmp.write('<img src="'+imgUrl+'" >');

	tmp.write('</td></tr></table>');
	tmp.write('</body></html>');
	tmp.close();

}