JavaScript Reference/Javascript Methods/showModalDialog
"showModalDialog()" Example
<html>
<body>
<script language="JavaScript">
function openWindow() {
var myArguments = new Object();
myArguments.param1 = document.all.myColor.value;
window.showModalDialog("http://www.wbex.ru", myArguments, "");
}
</script>
<select id="myColor">
<option value="red">Red</option>
<option value="green">Green</option>
<option value="blue">Blue</option>
<option value="yellow">Yellow</option>
</select>
<button onclick="openWindow();">Open window</button>
</body>
</html>
"showModalDialog()" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |window |
+----------------+--------------------------------------------------------------+
"showModalDialog()" Syntax, Parameters and Note
Note:
Opens a model dialog.
Syntax:
window.showModalDialog(param1, param2, param3)
Parameters:
param1 Required; the URL of the document to display.
param2 Optional; an object with added properties.
The modal window will receive this object using its
dialogArguments property.
param3 Optional; a semicolon-delimited list of one or more of the style
attributes listed at
http://msdn.microsoft.ru/workshop/author/dhtml/reference/methods/showmodaldialog.asp..