function openWin(image, w, h){
var wh='width='+w+',height='+h
var tmpPage=window.open('','',wh)
tmpPage.document.write('<body style="margin:0;padding:0;"><img src="'+image+'" width="'+w+'" height="'+h+'">')
tmpPage.document.close()
}
