var Resizer = { Resize : function () { this.Reid = (this.Reid) ? this.Reid : "Resized"; this.Rewidth = (this.Rewidth) ? this.Rewidth : 300; var This = this; var Img = document.documentElement.getElementsByTagName("IMG"); var ImgLen = Img.length; for (var i=0;i Rewidth) { Img[i].width = Rewidth; Img[i].border = "0"; Img[i].style.cursor = "pointer"; Img[i].onclick = function () { This.View(this.src); } } } }, View : function (imgUrl) { var ViewObj = window.open('','ViewObj','left=0,top=0,width=100, height=100, menubar=no, toolbar=no, directories=no, location=no, status=no, scrollbars=yes, resizable=no'); ViewObj.document.open(); ViewObj.document.write("\n\nImage Previewer\n\n"); ViewObj.document.write("\n"); ViewObj.document.write("\n
\n"); ViewObj.document.write(""); ViewObj.document.close(); } }