<!--
//troca a cor das guias
function ApplyXPOverStyle(obj,color,color2,addborder) { 
	 obj.style.backgroundColor = color;
	 obj.style.borderColor = color2;
    if (addborder=='true') {obj.style.borderStyle='solid';obj.style.borderWidth='1px'}
}

function ApplyXPOutStyle(obj) {
	obj.style.backgroundColor = '';
	if (navigator.appName == 'Netscape') { obj.style.borderColor = 'EBEBEB'; } else { 
	obj.style.borderColor = ''; }
	obj.style.borderStyle = '';
}

//redimensionar as imagens do site
function res(x,alvo){
	if(alvo==null){
		mx = 100
	}else{
		mx = 420
		if(alvo=='destaque')mx = 100
	}
	if(document[x].width>document[x].height){
		if(document[x].width>mx)document[x].width=mx;
	}else{
		if(document[x].height>mx)document[x].height=mx;
	}
}



function ampliar( cd ) {
 	window.open("ampliar.asp?"+ cd,"ampliar","width=400,height=400");
}

function exib(obj){
	if (document.getElementById(obj).style.display == 'none') {
		document.getElementById(obj).style.display = 'block';
	} 
	else {
		document.getElementById(obj).style.display = 'none';
	}
}

function rolagem(obj,scl){
	if (scl > 15) {
		document.getElementById(obj).style.height = 200;
	}
}

self.name = 'principal'

//-->