windowHandler.js 518 B

12345678910111213141516
  1. function openWin(url)
  2. {
  3. window.open(url,'PortalPopWin','width=800,height=700,scrollbars=yes,screenX=10,screenY=10,top=10,left=10, help=no,resizable=yes');
  4. }
  5. function openModalDialog(url)
  6. {
  7. window.showModalDialog(url,"PortalPopModalDialog","dialogHeight: 150px; dialogWidth: 300px; center: yes; help: no; resizable: no; status: no;");
  8. }
  9. function openNewsWin(url){
  10. main=window.open(url,'main','width=700,height=500,scrollbars=yes,screenX=10,screenY=10,top=10,left=10, help=no,resizable=yes');
  11. }