function Start(URL, WIDTH, HEIGHT) {
windowprops = "left=100,top=50,width=630,height=480,resizable=1";

text = "<html><head><title>Image Preview</title></head><body bgcolor='#000000' onblur='self.close()'";

text += "><center><img src='" + URL + "' alt='JM Wall Development'></center></body></html>";

preview = window.open("", "Preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}
