function mainPop(Purl)
{
  var Pwidth = screen.width;
  var Pheight = screen.height;
  win = window.open(Purl,"popup","width=" + Pwidth + ",height=" + Pheight + ",status=no,location=no,toolbar=no,resizable=yes");
  win.moveTo(0,0);
}

function UgY2kPop(P)
{
  var Pwidth = screen.width;
  var Pheight = screen.height;
  win = window.open(P,"popupY2K","width=" + Pwidth + ",height=" + Pheight + ",status=no,location=no,toolbar=no,resizable=yes");
  win.moveTo(0,0);
}


function TVpilot(theURL) { //v2.0
    win = window.open(theURL,
		'',
		'toolbar=no,width=680,height=590,directories=no,statusbar=no,scrollbars=yes,resizeable=0,menubar=no,location=no,copyhistory=no'
		); 
    win.caller=this;
    
    win.focus();
} 