
function OpenPlayer(page)
{
    var w;
		var pos;
		var endOfPath, endOfPage;
		
    w = window.open("",'PlayerRM','top=150,left=150,screenx=150,screeny=150,width=150, height=150,toolbar=false,scrollbars=no,');
		endOfPath = w.location.href;
		pos = endOfPath.indexOf("/Player/");
		if(-1 != pos)
				endOfPath = endOfPath.substring(pos);
		pos = page.indexOf("/Player/");
		if(-1 != pos)
				endOfPage = page.substring(pos);
		else
				endOfPage = page;
		w.focus();
		if(endOfPath != endOfPage)
		{   w.location = page;}
}

