12345678910111213141516 |
- function openWin(url)
- {
- window.open(url,'PortalPopWin','width=800,height=700,scrollbars=yes,screenX=10,screenY=10,top=10,left=10, help=no,resizable=yes');
- }
- function openModalDialog(url)
- {
- window.showModalDialog(url,"PortalPopModalDialog","dialogHeight: 150px; dialogWidth: 300px; center: yes; help: no; resizable: no; status: no;");
-
- }
- function openNewsWin(url){
- main=window.open(url,'main','width=700,height=500,scrollbars=yes,screenX=10,screenY=10,top=10,left=10, help=no,resizable=yes');
- }
|