var Win = null; function resizeWin() { var Img = Win.document.getElementById('img'); Win.resizeTo(Img.clientWidth + 35, Img.clientHeight + 75); } function zoom(_url, _width, _height) { Win = window.open( _url, '_blank', 'resizable=no,scrollbars=yes,location=no,status=yes,width=' + (_width + 40) + ',height=' + (_height + 40) + ',toolbar=0' ); return false; } function ZoomImage(_url, _width, _height) { var _html = ' ' + '
' + '
'; Win = window.open( 'about:blank', '_blank', 'resizable=no,scrollbars=yes,location=no,status=yes,width=' + _width + ',height=' + _height + ',toolbar=0' ); Win.document.write(_html); Win.document.close(); Win.document.getElementById('img').onload = resizeWin; }