<!--
// 
function tc(n)
{
  var pop=window.open("second/popup/"+n+".htm","pop","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,alwaysRaised=1,Dependent=1,width=516,height=450");
  var sw=window.screen.availWidth;
  var sh=window.screen.availHeight;
  var x=(sw-500)/2;
  var y=(sh-500)/2;
  if(x<0)
  {
    x = 0;
  }
  if(y<0)
  {
    y = 0;
  }
  pop.moveTo(x,y);
  pop.focus();
}

function tcp(n)
{
  var pop=window.open(""+n+".htm","pop","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=,alwaysRaised=1,Dependent=1,width=516,height=450");
  var sw=window.screen.availWidth;
  var sh=window.screen.availHeight;
  var x=(sw-500)/2;
  var y=(sh-500)/2;
  if(x<0)
  {
    x = 0;
  }
  if(y<0)
  {
    y = 0;
  }
  pop.moveTo(x,y);
  pop.focus();
}
//-->