
<!--
function popupnr(mylink, windowname, refocus)
{
var mywin, href;

if (typeof(mylink) == 'string')
   href=mylink; 
   
else
   href=mylink.href;
mywin = window.open('', windowname, 'width=420,height=380,scrollbars=no');

// if we just opened the window
if (
   mywin.closed || 
   (! mywin.document.URL) || 
   (mywin.document.URL.indexOf("about") == 0)
   )
   mywin.location=href;
else if (refocus)
   mywin.focus();
return false;

}

function popem(mylink, windowname, refocus)
{
var mywin, href;

if (typeof(mylink) == 'string')
   href=mylink; 
   
else
   href=mylink.href;
mywin = window.open('', windowname, 'width=670,height=650,scrollbars=no');

// if we just opened the window
if (
   mywin.closed || 
   (! mywin.document.URL) || 
   (mywin.document.URL.indexOf("about") == 0)
   )
   mywin.location=href;
else if (refocus)
   mywin.focus();
return false;

}

function popnl() 
{Openwin = this.open
('subscription.html','subscription','width=420,height=380,scrollbars=no'); }

function poppl() 
{Openwin = this.open
('playerh.html','player','width=420,height=380,scrollbars=no'); }

function popnot() 
{Openwin = this.open
('player.html','player','width=420,height=380,scrollbars=no'); }


//-->
