function openMe(aURL,aName) {
  var param = "width=800,height=600,toolbar=0,directories=0,menubar=0,status=1,resizable=yes,location=0,scrollbars=yes";
  var myName = window.open(aURL,aName,param,true);
  myName.focus();
}

function popMeUp(aURL,aName,width,height) {
  if (width==null) {
    width = 600;
  }
  if (height==null) {
    height = 400;
  }

  var param = "width="+width+",height="+height+",toolbar=0,directories=0,menubar=0,status=1,resizable=yes,location=0,scrollbars=yes";
  var myName = window.open(aURL,aName,param);
  myName.focus();
}

