// JavaScript Document

 function flash(secao, largura, altura){
	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="./swf/'+secao+'.swf">');
		document.writeln('<param name="menu" value="false">');
		document.writeln('<param name="quality" value="high">');
		document.writeln('<param name="scale" value="noborder">');
		document.writeln('<param name="wmode" value="transparent">');
		document.writeln('<embed src="./swf/'+secao+'.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width='+largura+' height='+altura+' scale="noborder" wmode="transparent"></embed>');
	document.writeln('</object>');
 }
 
  function flashMenu(secao, largura, altura){
	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+'> wmode="transparent"');
		document.writeln('<param name="movie" value="./swf/'+secao+'.swf">');
		document.writeln('<param name="quality" value="high">');
		document.writeln('<param name="scale" value="noborder">');
		document.writeln('<param name="wmode" value="transparent">');
		document.writeln('<embed src="./swf/'+secao+'.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width='+largura+' height='+altura+' scale="noborder" wmode="transparent"></embed>');
	document.writeln('</object>');
 }
 
 function flash_nonTrans(secao, largura, altura){
	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="./swf/'+secao+'.swf">');
		document.writeln('<param name="menu" value="false">');
		document.writeln('<param name="quality" value="high">');
		document.writeln('<param name="scale" value="noborder">');
		document.writeln('<embed src="./swf/'+secao+'.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width='+largura+' height='+altura+' scale="noborder"></embed>');
	document.writeln('</object>');
 }
 
function showHide(ID) {
	 if	(document.getElementById(ID).style.display == "none")
		 document.getElementById(ID).style.display = "block";
	 
	 else
	 	 document.getElementById(ID).style.display = "none";
 }
 

function newWinImg(picURL,picWidth,picHeight,picTitle){
	newWindow=window.open(picURL,'newWin','toolbar=no,width='+picWidth+',height='+picHeight)
	newWindow.document.write('<html><head><title>'+picTitle+'<\/title><\/head><body background="'+picURL+'"><\/body><\/html>')
	newWindow.resizeBy(picWidth-newWindow.document.body.clientWidth, picHeight-newWindow.document.body.clientHeight)
	newWindow.focus()
}

function fechar(){
	document.all.Layer8.style.visibility='hidden'
}
