function imgWin(imgurl,imgW,imgH){
	subwin=window.open("", '_blank', "width="+imgW+",height="+imgH+",scrollbars=no,resizable=no,toolbar=no,directories=no,location=no,menubar=no,status=no,top=50");
	subwin.document.write("<html><body style='margin:0;padding:0;'>");
	subwin.document.write("<img src='"+imgurl+"'>");
	subwin.document.write("</body></html>");
	subwin.document.close();
}
