function GetUpdateAndSubmit() {
  var callerWindowObj = dialogArguments;
  callerWindowObj.sPsw = document.getElementById("oEnterPsw").value;
  callerWindowObj.sUsr = document.getElementById("oEnterUsr").value;	  
  callerWindowObj.update();
}
function Check(){
	if ((document.getElementById("oEnterPsw").value!="") && (document.getElementById("oEnterUsr").value!="")) {
		document.getElementById("cmdIng").disabled = 0;
	}			
	else {
		document.getElementById("cmdIng").disabled = 1;
	}
}