function popIt(width,height,theURL) { //v2.0

  var winName = theURL;
  var winl = (screen.width - width) / 2 - 10;
  var wint = (screen.height - height) / 2;

  features = 'width='+width+',height='+height+',top='+wint+',left='+winl+',toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no'

  window.open(theURL,winName,features);
}