function OpenWindow(url, width, height, popup) {
  var features = "";
  if((popup != 'False') && (popup != 'false')) {
    //Open a popup window
    features = "titlebar=no,menubar=no,toolbar=no,status=no,location=no,directories=no,scrollbars=yes,resizable=yes,copyhistory=yes";
  } else {
    //Open a new website with all features of the browser active
    features = "titlebar=yes,menubar=yes,toolbar=yes,status=yes,location=yes,directories=yes,scrollbars=yes,resizable=yes,copyhistory=yes";
  }
  if((width != "") && (width != "0")) {
    features = features + ",width=" + width;
  }
  if((height != "") && (height != "0")) {
    features = features + ",height=" + height;
  }
  window.open(url, "", features);
}


function OpenWindowWithFeatures(url, width, height, features, closeparent) {
  if((width != "") && (width != "0")) {
    features = features + ",width=" + width;
  }
  if((height != "") && (height != "0")) {
    features = features + ",height=" + height;
  }
  if(closeparent = 'true'){
		window.close();
  }
  window.open(url, "", features);
}
