Untitled
By: a guest | Mar 22nd, 2010 | Syntax:
None | Size: 0.88 KB | Hits: 66 | Expires: Never
function showRequestPopup(pageUrl, width, height, requestId, btnName) {
if (pageUrl == null) {
var url = "showRequestPopup.aspx?requestId=" + requestId + "&btnSearch=" + btnName;
}
if (width == null || height == null) {
var mdProperties = 'dialogHeight: 360px; dialogWidth: 350px; center: yes';
var opProperties = 'height=260, width=350, modal=yes, menubar=no,location=1,resizable=no,scrollbars=yes,status=no';
}
else {
var mdProperties = 'dialogHeight: ' + width + 'px; dialogWidth: ' + height + 'px; center: yes';
var opProperties = 'height=' + height + ', width=' + width + ', modal=yes, menubar=no,location=1,resizable=no,scrollbars=yes,status=no';
}
if (window.showModalDialog) //IE
window.showModalDialog(url, window, mdProperties);
else //FF osv...
window.open(url, '', opProperties);
}