function newWindow(newContent)
 {
  winContent = window.open(newContent, '_blank', 'left=60,top=50,width=750,height=550,toolbar=yes,scrollbars=yes,resizable=yes,directories=yes,status=yes,menubar=yes,location=yes')         
 }

var win = null;

function popCenter(theURL, winName, w, h)
{
  var fromLeft = 0;
  var fromTop = 0;
	if (window.screen)
  {
    var fromLeft = ((screen.availWidth - w - 10) / 2);
    var fromTop = ((screen.availHeight - h - 30) / 2);
  }
  var settings = 'width=' + w + ',height=' + h + ',left='
               + fromLeft + ',top=' + fromTop + ',location,status,resizable,scrollbars,toolbar';
  win = window.open(theURL, winName, settings);
  if (window.focus)
    win.focus();
  return false;
}