﻿    function Player(fCodigo)
    {
	    var iTopo, iLeft
	    var fLargura, fAltura;
	    
	    fLargura = 450;
	    fAltura  = 420;
	    iTopo    = (window.screen.height / 2) - (fAltura / 2);
	    iLeft    = (window.screen.width / 2) - (fLargura / 2);

        window.open('../../player/?COD=' + fCodigo, '_Player', "width="+ fLargura +", height="+ fAltura +", left="+ iLeft +", top=" + iTopo);
    }
