<!--
function intro(ficheiro, largura, altura) {
	document.write('<OBJECT CLASSID="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
	document.write('  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" ');
	document.write(' WIDTH="' + largura + '" HEIGHT="' + altura + '">');
	document.write(' <PARAM NAME="movie" VALUE="media/' + ficheiro + '">');
	document.write(' <PARAM NAME="allowScriptAccess" VALUE="sameDomain">');
	document.write(' <PARAM NAME="quality" VALUE="best">');
	document.write(' <PARAM NAME="menu" VALUE="false">');
	document.write(' <PARAM NAME="scale" VALUE="noborder">');
	document.write(' <PARAM NAME="loop" VALUE="false">');
	document.write(' <PARAM NAME="wmode" VALUE="transparent">');
	document.write(' <PARAM NAME="bgcolor" VALUE="#FFFFFF">');
	document.write(' <EMBED src="media/' + ficheiro + '" allowScriptAccess="sameDomain" quality="best"');
	document.write(' menu="false" scale="noborder" wmode="transparent" loop="false" bgcolor="#FFFFFF" width="' + largura + '" height="' + altura + '"');
	document.write(' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">');
	document.write(' </EMBED>');
	document.write(' </OBJECT>');
}

function imagem(ficheiro, lingua, legenda) {
	document.write('<BR><OBJECT CLASSID="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
	document.write('  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" ');
	document.write(' width="440" height="370" id="flash_gerador" align="middle">');
	document.write(' <PARAM NAME="movie" VALUE="media/' + ficheiro + '?lingua=' + lingua + '">');
	document.write(' <PARAM NAME="allowScriptAccess" VALUE="sameDomain">');
	document.write(' <PARAM NAME="quality" VALUE="best">');
	document.write(' <PARAM NAME="menu" VALUE="false">');
	document.write(' <PARAM NAME="scale" VALUE="noscale">');
	document.write(' <PARAM NAME="loop" VALUE="false">');
	document.write(' <PARAM NAME="wmode" VALUE="transparent">');
	document.write(' <PARAM NAME="bgcolor" VALUE="#FFFFFF">');
	document.write(' <EMBED src="media/' + ficheiro + '?lingua=' + lingua + '" allowScriptAccess="sameDomain" quality="best"');
	document.write(' menu="false" scale="noscale" wmode="transparent" loop="false" bgcolor="#FFFFFF" width="440" height="370" title="' + legenda + '"');
	document.write(' type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">');
	document.write(' </EMBED>');
	document.write(' </OBJECT><BR>');
}

//-->