function PopupDirija ( strURLVideo, strTitulo, largura, altura ) {
	var variaveis = "VIDEO_URL=" + strURLVideo;
	var strURLPlayer = "../_swf/full_screen_video.swf";

	var objJanela = window.open( '', '_' + parseInt( Math.random() * 999999 ).toString(), 'status=1, menubar=0, width='+largura+', height='+altura+', left=0, top=0, scrollbars=0' );
	var strHTML	= '';
	strHTML += '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n';
	strHTML += '<html xmlns="http://www.w3.org/1999/xhtml">\n';
	strHTML += '<head>\n';
	strHTML += '<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />\n';
	strHTML += '<title>' + strTitulo + '</title>\n';
	strHTML += '<style type="text/css">html, body{ margin:0px; height:100%; }</style>\n';
	strHTML += '<body bgcolor="#000000">\n';
	strHTML += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="100%" height="100%">\n';
	strHTML += '<param name="allowScriptAccess" value="sameDomain">\n';
	strHTML += '<param name="allowFullScreen" value="true">\n';
	strHTML += '<param name="movie" value="'+strURLPlayer+'">\n';
	strHTML += '<param name="FlashVars" value="'+variaveis+'">\n';
	strHTML += '<param name="quality" value="high">\n';
	strHTML += '<param name="scale" value="noscale">\n';
	strHTML += '<param name="salign" value="c">\n';
	strHTML += '<param name="bgcolor" value="#000000">\n';
	strHTML += '<embed src="'+strURLPlayer+'" FlashVars="'+variaveis+'" width="100%" height="100%" align="middle" quality="high" scale="noscale" salign="c" bgcolor="#000000" name="dirijaComPiloto" allowscriptaccess="sameDomain" allowfullscreen="true" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>\n';
	strHTML += '</object>\n';
	strHTML += '</body>\n';
	strHTML += '</html>';
	objJanela.document.write( strHTML );
};
