function openWindow(url, name, widthOrSize, height) {
  if (height=="undefined") {
    if (widthOrSize=="undefined") {
      sFeatures = "left=64,top=64,width=420,height=500,menubar=yes,location=yes,toolbar=yes,scrollbars=yes,resizable=yes";
    } 
    else {
      sFeatures = widthOrSize + ",menubar=yes,location=yes,toolbar=yes,scrollbars=yes,resizable=yes";
    }    
  }
  else {
    sFeatures =  "left=64,top=64" + ",width=" + widthOrSize + ",height=" + height + ",menubar=yes,location=yes,toolbar=yes,scrollbars=yes,resizable=yes";  
  }
  return window.open(url, name, sFeatures);
}

function openPopUp(url, name, widthOrSize, height) {
  if (height=="undefined") {
    if (widthOrSize=="undefined") {
      sFeatures = "left=64,top=64,width=300,height=200,menubar=no,location=no,toolbar=no,scrollbars=auto,resizable=yes";
    } 
    else {
      sFeatures = widthOrSize + ",menubar=no,location=no,toolbar=no,scrollbars=auto,resizable=yes";
    }    
  }
  else {
    sFeatures =  "left=64,top=64" + ",width=" + widthOrSize + ",height=" + height + ",scrollbars=yes,resizable=yes";  
  }
  return window.open(url, name, sFeatures);
}



