function showImage(url,height,width) {
 var html = "";
 html += "<html><head><title>Requested Image</title></head><body style=\"margin:0px;padding:0px\">";
 html += "<img src=\""+url+"\" alt=\"Requested Image\" height=\""+height+"\" width=\""+width+"\" />";
 html += "</body></html>";
 var optstring = "";
 optstring += "directories=0,height="+height+",width="+width+",menubar=0,location=0,";
 optstring += "resizable=0,status=0,scrollbars=0";
 imageWindow = window.open(null,"imageWin",optstring);
 imageWindow.document.write(html);
}