// JavaScript Document
function mostra_swf(nome_swf,descr,largura,altura,cor_fundo,img_alternativa,url,target) 
{
        var str = '<style type="text/css">'+	
				 '#'+descr+' {width:'+largura+' height:'+altura+' }'+
				'</style>'+
				'<div id="'+descr+'">' +
	            '<a href="' + url + '" target="'+ target+'">  <img src="' +img_alternativa+'" width="'+largura+'" height="'+altura+'" alt="'+descr+'" border="0" /></a>'+
	            '</div>';
        document.write(str);
		// <![CDATA[
		var so = new SWFObject(nome_swf, descr, largura, altura, "7", cor_fundo);
       so.addParam("wmode", "transparent");
	   so.write(descr);
		// ]]>
}

function mostra_swf_cab(nome_swf,descr,largura,altura,cor_fundo,img_alternativa) 
{
        var str = '<style type="text/css">'+	
				 '#'+descr+' {width:'+largura+' height:'+altura+' }'+
				'</style>'+
				'<div id="'+descr+'">' +
	            '<img src="' +img_alternativa+'" width="'+largura+'" height="'+altura+'" border="0" usemap="#Map"/>'+
	            '</div>';
				
			//str+='<map name="Map">' +
			//	  '<area shape="rect" coords="705,24,772,50" href="http://portal.ipvc.pt/portal/page/portal/ipvc" target="_self" alt="INSTITUTO">'+
			//	  '<area shape="rect" coords="780,26,872,51" href="http://portal.ipvc.pt/portal/page/portal/eu_aluno" target="_self" alt="eu, aluno">'+
			//	  '<area shape="rect" coords="878,29,978,52" href="http://portal.ipvc.pt/portal/page/portal/idt" target="_self" alt="ID&TECNOLOGIA">'+
			//	'</map>';

				alert(str);
        document.write(str);
		// <![CDATA[
		var so = new SWFObject(nome_swf, descr, largura, altura, "7", cor_fundo);
       so.addParam("wmode", "transparent");
	   so.write(descr);
		// ]]>
}
