/////////////////
function showimage(src, w, h) {
	msgWindow=window.open('', '', 'width='+w+', height='+h);
   msgWindow.document.writeln('<html><body style="margin:0;padding:0">');
	msgWindow.document.writeln('<a href="javascript:window.close();"><img border="0" src="' + src + '"></a>');
	msgWindow.document.writeln('</body></html>');
   msgWindow.document.close();
}

