var totalImagens = 0;

function writeswfhtml(nome, width, height, html) {
	document.writeln('<object type="application/x-shockwave-flash" data="includes/swf/'+ nome +'.swf" width="'+ width +'" height="'+ height +'" >');
	document.writeln('<param name="movie" value="includes/swf/'+ nome +'.swf" />');
	document.writeln('<param name="quality" value="high" />');
	document.writeln('<param name="wmode" value="transparent" />');
	document.writeln(html);
	document.writeln('<embed src="includes/swf/'+ nome +'.swf" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width='+width+' height='+height+'></embed>');
	document.writeln('</object>');
}

function writeswfhtml2(nome, width, height, html, paramextra) {
	document.writeln('<object type="application/x-shockwave-flash" data="includes/swf/'+ nome +'.swf" width="'+ width +'" height="'+ height +'">');
	document.writeln('<param name="movie" value="includes/swf/'+ nome +'.swf" />');
	document.writeln('<param name="quality" value="high" />');
	document.writeln(paramextra);
	document.writeln(html);
	document.writeln('</object>');
}

function showEmpreendimento(dir, num) {
	var cima = document.getElementById('divcima');
	

	var tmpFlash = '<object type="application/x-shockwave-flash" data="includes/swf/slideshow.swf?dir='+dir+'&numero='+num+'&total='+totalImagens+'" width="645" height="532">';
	tmpFlash += '<param name="movie" value="includes/swf/slideshow.swf?dir='+dir+'&numero='+num+'&total='+totalImagens+'" />';
	tmpFlash += '<param name="quality" value="high" />';
	tmpFlash += '<param name="wmode" value="transparent" />';
	tmpFlash += '</object>';
	tmpFlash += '<a href="javascript:hideEmpreendimento();" title="Fechar Janela">Fechar janela</a>';
	
	cima.innerHTML = tmpFlash;
//alert(tmpFlash);
	cima.style.display = 'block';
}

function hideEmpreendimento() {
	var cima = document.getElementById('divcima');
	cima.style.display = 'none';
}
