// JavaScript Document
//Media Player for Manatee - to pop up and not reload when the user clicks the launch link more than once.

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

if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
mywin = window.open('', windowname, 'width=255,height=305,scrollbars=no,left=10,top=150');

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

}