JSポップアップダイアログ


ブラウザがIEなら、window.open(パラメータキーペア)がオススメです.
        ブラウザがIE以外のブラウザである場合は、show ModalDialogを使用することを推奨します.
        具体的なコードは以下の通りです.
         if(window.ActiveX){
window.open(this.href,'', 'height=350,width=400,toolbar=no,location=no,status=no,menubar=no');
}else{
 showModelessDialog('http://www.fwcn.com','example05','dialogWidth:400px;dialogHeight:300px;dialogLeft:200px;dialogTop:150px;center:yes;help:yes;resizable:yes;status:yes')
}