var arrTemp=self.location.href.split("?"); var picUrl = (arrTemp.length>0)?arrTemp[1]:""; var NS = (navigator.appName=="Netscape")?true:false; function FitImg() { iWidth = (NS)?window.innerWidth:document.body.clientWidth; iHeight = (NS)?window.innerHeight:document.body.clientHeight; w = document.images[0].width; h = document.images[0].height; PosY = (screen.height-h)/2; PosX = (screen.width-w)/2; iWidth = document.images[0].width - iWidth; iHeight = document.images[0].height - iHeight; window.resizeBy(iWidth, iHeight); window.moveTo(PosX,PosY); self.focus(); } function PopupImg(PicURL) { window.open( "../popup.html?"+PicURL, "","resizable=1,HEIGHT=5,WIDTH=5"); } 

