//別ウィンドウオープン用スクリプト 2000.9.12 // 2001.5.31 ver3 //Copyright(c) 2001. phoenix(ph). all rights reserved. //------------------------------------------------------------------- var ww = window; function phot(title,url,haba,takasa) { if ((ww == window) || ww.closed) { haba = haba - 2; takasa = takasa - 5; style = "width=" + haba + ",height=" + takasa + ",scrollbars=no,resizable=no,toolbar=no,top=100,left=100"; ww = open("","_blank", style); ww.document.write(""); ww.document.write("" + title + ""); ww.document.write(""); ww.document.write(""); ww.document.write(""); ww.document.write(""); } else { ww.focus(); } return(false); }