function OpenWindow(strWName, strURL,strWidth,strHeight) {
  remote = window.open(strURL, strWName,'scrollbars=yes,toolbar=no,status=no,width='+strWidth+',height='+strHeight);
  if (remote != null) {
    if (remote.opener == null) {
      remote.opener = self;
    }
    if (strURL != "") {
      remote.location.href=strURL;
    }
  }
  if (remote.focus) remote.focus();
}

function OpenWindowWithMenu(strWName, strURL,strWidth,strHeight) {
  remote = window.open("", strWName,'');
  if (remote != null) {
    if (remote.opener == null) {
      remote.opener = self;
    }
    if (strURL != "") {
      remote.location.href=strURL;
    }
  }
  if (remote.focus) remote.focus();
}
