function mostrar(nombreCapa){ 
document.getElementById(nombreCapa).style.visibility="visible"; 
} 

function ocultar(nombreCapa){ 
document.getElementById(nombreCapa).style.visibility="hidden";
document.getElementById(nombreCapa).style.position="absolute"; 
} 
var pulsado = 0;

function mostraropciones(alto1, alto2) {
	
	if (pulsado == 0) {
		parent.document.getElementById('FORMULARIO').style.height = alto1 + 'px';
		document.getElementById('OPCIONALES').style.display='block';
		document.getElementById('boton').src='/images/bot_close.gif';
		pulsado = 1;
		}
	else {
		parent.document.getElementById('FORMULARIO').style.height= alto2 + 'px';
		document.getElementById('OPCIONALES').style.display='none';
		document.getElementById('boton').src='/images/bot_open.gif';
		pulsado = 0;
		}	
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function colorpestana(enlace1, enlace2) {
	document.getElementById(enlace1).style.color ='#FFFFFF';
	document.getElementById(enlace2).style.color ='#39500A';
}

function colorpestanatres(enlace1, enlace2, enlace3) {
	document.getElementById(enlace1).style.color ='#FFFFFF';
	document.getElementById(enlace2).style.color ='#39500A';
	document.getElementById(enlace3).style.color ='#39500A';
}
function muestratramo(id) {
	document.getElementById(id).className='activa'
}
function ocultatramo(id) {
	document.getElementById(id).className='';
}