

var msgWindow = null;
function newWindow(file,window) {
    msgWindow=open(file,window,'location=yes,scrollbars=yes,resizable=yes,width=620,height=500,top=10,left=10,screenX=10,screenY=10');
    if (msgWindow.opener == null) msgWindow.opener = self;
	msgWindow.focus();
}

function MM_displayStatusMsg(msgStr) { //v1.0
  status=msgStr;
  document.MM_returnValue = true;
}

