function showImage(img,width,height){

expwindow = window.open('','','width='+width+',height='+height+',status=0,menubar=1,scrollbars=1,resizable=1');

expwindow.document.write('<html><head><title></title></head>');

expwindow.document.write('<body style="margin:0px;padding:0px">');

expwindow.document.write('<a href="javascript:self.close()"><img border="0" src="'+img+'"></a>' );

expwindow.document.write('</body></html>');

}

