function playeropen(direccion, winWidth, winHeight, winLeft, winTop){
	if (playeropen.arguments.length < 5){
		winLeft = 20;
		winTop = 20;
	}
	winName = winNameIni + winCount++  
	closePopWin() 

	winFeatures='toolbar=no,location=no,directories=no,status=no,menubar=no, scrollbars=no,resizable=no,width='+ winWidth + ',height='+ winHeight + ',screenX='+ winLeft + ',screenY='+ winTop;

	pop = window.open ("","winName",winFeatures);

	pop.document.write("<TITLE>Player</TITLE>");

	pop.document.write('<BODY leftMargin=0 topMargin=0 marginwidth="0" marginheight="0">');

	pop.document.write ("<table border='0' cellspacing=0 cellpadding=0 width='100%'><tr><td>");

	pop.document.write('<object ID="MMPlayer1" classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Cargando Componentes de Microsoft® Windows® Media Player..." type="application/x-oleobject" height="200" width="300" style="LEFT: 0px; TOP: 0px" VIEWASTEXT>\n<param NAME="URL" VALUE="mms://'+ direccion +'">\n<param NAME="Volume" VALUE="75">\n<param name="autoStart" value="True">\n<param name="fullScreen" value="False">\n<embed type="application/x-mplayer2" style="LEFT: 0px; TOP: 0px" pluginspage="http://www.microsoft.com/windows/MediaPlayer/" SRC="mms://'+ direccion +'"" name="MediaPlayer1" width="292" height="250">\n</object>');
		
	pop.document.write('</td></tr></table>');

	pop.document.write('</BODY>');
}