function see_hide( secid ) {
	var sectionId = document.getElementById( secid );
	if ( sectionId == null ) {
		return;
	}
	if ( sectionId.style.display == '' ) {
		sectionId.style.display = 'none';
	} else {
		sectionId.style.display = '';		
	}
}

function setDisplay(secid,value){
	var sectionId = document.getElementById( secid );
	if ( sectionId == null ) {
		return;
	}
	sectionId.style.display = value;
}

function see_hide_menu( elemId , parent) {
	listado = document.getElementById(parent);
	contenedores = listado.getElementsByTagName('p');
		
	numContenedores = contenedores.length;
	
	for(m=0; m < numContenedores; m++){
		//document.write(contenedores[m].id);
		//document.writeln("m: " + m + " numC: " + numContenedores + "<br />");
		titulo = document.getElementById('mnu_' + m);
		contenedorNow = contenedores[m];
		if(contenedorNow.id != elemId){
			contenedorNow.style.display = 'none';
			//if(m != 7){
			if(m != (numContenedores-1)){
				titulo.style.borderBottom = "1px solid #9399c2";
			}
			
		}else{
			if(contenedorNow.style.display == 'block'){
				contenedorNow.style.display = 'none';
				titulo.style.borderBottom = "1px solid #9399c2";
				titulo.style.backgroundImage = "images/template/vinieta_back_blue_open.gif";
			}else{
				contenedorNow.style.display = 'block';
				titulo.style.border = 'none';
			}
			
		}
	}
}

function see_one( secid ){
	var sectionId = document.getElementById( secid );
	if ( sectionId == null ) {
		return;
	}
	if ( sectionId.style.display == '' ) {
		sectionId.style.display = 'none';
	} else {
		sectionId.style.display = '';
	}
}

function redireccionar(pagina){
	document.location.href = pagina;
}

function sendQuickComment(destinatario){
	var sectionId = document.getElementById('quickForm');
	if ( sectionId == null ) {
		return;
	}
	if ( sectionId.style.display == 'none' ) {
		sectionId.style.display = '';
	}
	
	document.quickCommentForm.paraEmail.value = destinatario;
	document.quickCommentForm.qfDestinatario.value = destinatario;
	document.quickCommentForm.qfNombre.value = "";
	document.quickCommentForm.qfEmail.value = "";
	document.quickCommentForm.qfComentario.value = "";
	
	//document.write(document.commentForm.destinatario.value);
	
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function see_pestania(section){
	var sectionId = document.getElementById( section );
	if ( sectionId == null ) {
		return;
	}
	
	if(section == "stacruz"){
		sectionId.style.display = '';
		var sectionId2 = document.getElementById( 'lapaz' );
	}else{
		
	}	
	
	if ( sectionId.style.display == '' ) {
		sectionId.style.display = 'none';
	} else {
		sectionId.style.display = '';		
	}
}

function redireccionar(pagina){
	document.location.href = pagina;
}

function doPost(formulario){
	document[formulario].submit();
	/*document.formPais.action = document.formPais.urls.options[document.formPais.urls.selectedIndex].value;
	document.formPais.submit();*/
}