Saturday, December 29, 2007

JavaScript: Display a non-sized modal popup

// ***
// Displays a non-sized modal popup
// ***
function popUpModal(URL,title)
{
windowOptions = 'edge: Raised; center: yes; resizable: no; maximize:no; minimize:yes; status: no; scroll: no; help: no';
var rc = window.showModalDialog(URL,title,windowOptions);
}

No comments:

Post a Comment

Please use your common sense before making a comment, and I truly appreciate your constructive criticisms.