<!-- 
// if user clicks links in player window
function getPage(url,myext) {
	if (myext == 1)	{ //external opener (facebook)
			newwindow = window.open(url,'newwindow');
			newwindow.focus();			
	} else	{
		// single play with opener present
		if (window.opener && !window.opener.closed) { 
			opener.location.href = url;
			opener.focus(); 
		}
		// multi-play with opener present
		else if (top.window.opener && !top.window.opener.closed) {
			top.opener.location.href = url; 
			top.opener.focus();
		}
		else	{
			newwindow = window.open(url,'newwindow');
			newwindow.focus();
		}
		self.focus();
	}
}
//--> 
