function writeswfhtml(nome, width, height, html)
{
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" 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('<param name="flashvars" value="link='+html+'">');
	document.writeln('<embed src="includes/swf/'+nome+'.swf" flashvars="link='+html+'" 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 writeswfhtmltitulo(nome, width, height, html, titulo)
{
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width='+width+' height='+height+'>');
	document.writeln('<param name="movie" value="includes/swf/'+nome+'.swf?titulo='+titulo+'" />');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="includes/swf/'+nome+'.swf?titulo='+titulo+'" 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 writeswfhtmltituloProdutos(nome, width, height, html, titulo)
{
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width='+width+' height='+height+'>');
	document.writeln('<param name="movie" value="includes/swf/'+nome+'.swf?titulo='+titulo+'" />');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="wmode" value="transparent">');
	document.writeln('<embed src="includes/swf/'+nome+'.swf?titulo='+titulo+'" 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('</object>');
}

function writeswfhtmlmapa(nome, width, height, html, estado) {
	document.writeln('<object type="application/x-shockwave-flash" data="includes/swf/'+ nome +'.swf?estado='+estado+'" width="'+ width +'" height="'+ height +'">');
	document.writeln('<param name="movie" value="includes/swf/'+ nome +'.swf?estado='+estado+'" />');
	document.writeln('<param name="quality" value="high" />');
	document.writeln('<param name="wmode" value="transparent" />');
	document.writeln('<embed src="includes/swf/'+nome+'.swf?estado='+estado+'" 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 writeswfhtmlv(video) {
	document.writeln('<object type="application/x-shockwave-flash" data="includes/swf/player.swf?pathVideo='+video+'" width="158" height="105">');
	document.writeln('<param name="movie" value="includes/swf/player.swf?pathVideo='+video+'" />');
	document.writeln('<param name="quality" value="high" />');
	document.writeln('<param name="wmode" value="transparent" />');
	document.writeln('</object>');
}

function goProduto(valor) {
	if(valor == 'home') valor = '1';
	window.location.href = 'default.asp?pt=produtos&m='+valor;
}

function flash(nome, largura, altura, modo, trans)
{
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width='+largura+' height='+altura+'>');
	document.writeln('<param name="movie" value="'+nome+'">');
	document.writeln('<param name="quality" value="high">');
	document.writeln('<param name="'+modo+'" value="'+trans+'">');
	document.writeln('<embed src="'+nome+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width='+largura+' height='+altura+' wmode="'+trans+'"></embed>');
	document.writeln('</object>');
}