function OpenWindow(strURL, strTarget, intWidth, intHeight) {
  var objWindow = window.open(strURL, strTarget, 'width=' + intWidth + ',height=' + intHeight + ',status=no,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes');
  try {
    objWindow.focus();
  } catch(e) {
  }
}
