Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 22nd, 2010 | Syntax: None | Size: 0.88 KB | Hits: 66 | Expires: Never
Copy text to clipboard
  1. function showRequestPopup(pageUrl, width, height, requestId, btnName) {
  2.     if (pageUrl == null) {
  3.         var url = "showRequestPopup.aspx?requestId=" + requestId + "&btnSearch=" + btnName;
  4.     }
  5.  
  6.     if (width == null || height == null) {
  7.         var mdProperties = 'dialogHeight: 360px; dialogWidth: 350px; center: yes';
  8.         var opProperties = 'height=260, width=350, modal=yes, menubar=no,location=1,resizable=no,scrollbars=yes,status=no';
  9.     }
  10.     else {
  11.         var mdProperties = 'dialogHeight: ' + width + 'px; dialogWidth: ' + height + 'px; center: yes';
  12.         var opProperties = 'height=' + height + ', width=' + width + ', modal=yes, menubar=no,location=1,resizable=no,scrollbars=yes,status=no';
  13.     }
  14.  
  15.     if (window.showModalDialog) //IE
  16.         window.showModalDialog(url, window, mdProperties);
  17.     else //FF osv...
  18.         window.open(url, '', opProperties);
  19. }