
function alteraClasse(alteraClasseDiv,alteraClasseType){
	document.getElementById(alteraClasseDiv).setAttribute("class",alteraClasseType);
	document.getElementById(alteraClasseDiv).setAttribute("className",alteraClasseType);
}

function insertFlash(flashURL,flashWidth,flashHeight,flashTransparent){
	if(flashTransparent==1){
		var newParam = "<param name='wmode' value='transparent' />";
		var newWmode = "wmode='transparent'";
	}else{
		var newParam = "";
		var newWmode = "";
	}
	document.write("<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='"+flashWidth+"' height='"+flashHeight+"' title=''><param name='movie' value="+flashURL+" /><param name='menu' value='false' /><param name='quality' value='high' />"+newParam+"<embed src="+flashURL+" "+newWmode+" quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+flashWidth+"' height='"+flashHeight+"'></embed></object>");
}

function popup(URL){
	
	largura = (screen.width);
	altura = (screen.height);
	
	window.open(URL,"","width="+largura+",height="+altura+",top=150,left=200");
	return false;
}

 function abreImagem(URL,largura,altura){
	
	foto = new Image();
	foto.src = (URL);
	janelaLargura = largura +20;
	janelaAltura = altura +20;
	telaLargura = (screen.width)/2;
	telaAltura = (screen.height)/2;
	margemEsquerda = telaLargura - (largura/2);
	margemTopo = telaAltura - (altura/2);
 
	window.open(URL,'','width='+janelaLargura+',height='+janelaAltura+',scrolling=auto,top='+margemTopo+',left='+margemEsquerda);
	return false;
}
