function popPlayer(fileName, windowWidth, windowHeight) {
	var windowLeft = (screen.width / 2) - (windowWidth / 2);
	var windowTop = (screen.height / 2) - (windowHeight / 2);
	
	myWin = window.open('','popPlayer','scrollbars=no,directories=no,status=no,resizable=no,toolbar=no,location=no,menubar=no,menu=no,width='+windowWidth+',height='+windowHeight+',top='+windowTop+',left='+windowLeft);
	
	myWin.resizeTo(myWin.document.body.clientWidth + (document.all ? 10 : 5), windowHeight + 50);
	myWin.location.href = fileName;
	
	myWin.focus();
}
