function getImage(desktopURL,w,h) 
{ 
windowprops = "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,width="+w+",height="+h; 
text = "<html><head><title>View Image</title></head>"; 
text += "<body style=\"margin-top:0px; margin-left:0px; background-color: #ffffff;\">"; 
text += "<div align=\"center\"><img src='" + desktopURL + "'>"; 
text += "</div></body></html>"; 

view = window.open("", "Image", windowprops); 
view.document.open(); 
view.document.write(text); 
}