XML Server Getting Started
var dlgProps = "center:yes;dialogWidth:300px;dialogHeight:200px;status:no";
var dlgURL = "/Examples/Tutorial/step7.jsp";
var dlgParm = getCookie("userid");
var isLogonOK = window.showModalDialog(dlgURL, dlgParm, dlgProps);
var status = isLogonOK?"suceeded":"failed";
explanation.innerHTML = "Now that user logon " + status + " this window is active";
inp_changeme.value = "You can type now";
inp_changeme.focus();
}