<!--

function popup(url,width,height,target) {
    posx = ((screen.availWidth/2)-(width/2));
    posy = ((screen.availHeight/2)-(height/2));
    neu = window.open('', target, 'left='+posx+',top='+posy+',width='+width+',height='+height+',scrollbars=no');
    if (neu != null) {
      neu.focus();
      if (neu.opener == null) {
        neu.opener = self;
      }
      neu.location.href = url;
    }
  }
// -->

<!--

function popuptv(url,width,height,target) {
    posx = ((screen.availWidth/2)-(width/2));
    posy = ((screen.availHeight/2)-(height/2));
    neu = window.open('', target, 'left='+posx+',top='+posy+',width='+width+',height='+height+',scrollbars=no');
    if (neu != null) {
      neu.focus();
      if (neu.opener == null) {
        neu.opener = self;
      }
      neu.location.href = url;
    }
  }
// -->






