var i=0; var strDirPrefix=""; var nStyle=3; var sx = screen.width; if (sx >= 630) nStyle=3; if (sx >= 790) nStyle=3; if (sx >= 1000) nStyle=3; if (sx >= 1200) nStyle=4; if (sx >= 1550) nStyle=5; var sh = screen.height; var sw = screen.width; if (sh >= 700 && sw >= 1100 && sh < 890 ) nStyle=3; if (sh >= 900 && sw >= 1550 && sh < 1200 ) nStyle=4; if (sh >= 1100 && sw >= 1600 && sh < 1280 ) nStyle=5; for (i=0; i"; document.write(shm); //----------------------------------------------------------------------------- function PopupWindow(iFileName, iX, iY, wTitle) { var x = screen.width; var y = screen.height; var strStatus=wTitle; x = (x - iX) / 2; y = (y - iY) / 2; var sp = "Width=" + iX + ", Height=" + iY + ", left=" + x + ", top=" + y + ", resizable=yes, status=yes"; var strSource="pop.php?dt=" + wTitle + "\&im=" + iFileName; var hWin = window.open(strSource,"fPopup" , sp); hWin.Status=strStatus; hWin.defaultStatus=strStatus; hWin.focus; hWin.close; }