function openWin02(wURL){ var rnd = Math.floor(Math.random()*99999); var win = new Window("win"+rnd, { url : wURL, title: "花キューピットinfo", className: "dialog", top:1300, left:80, width:650, height:500, zIndex: 300, resizable: true, draggable:true }); win.setDestroyOnClose(); win.show(); } /*変更下記OpenWは e878_uranai_03_2_wd.js のonLoadへ実装済み。*/ OpenW = function(){ $$(".prtWindow").each(function(ele){ ele.onclick = function(){ openWin02(this.href); return false; } }); }