document.write("<script src='recursos/js/swfobject.js' type='text/javascript'></script>");

/*MENU*/
function initMenu(_seccion) {
  $('#menu ul').hide();
  
  $('.Liso_on').hide();
  $('.Liso_info').hide()
  
  $('#M'+_seccion).slideDown('slow');
  /*Bslct = getEl('B'+_seccion);
  Bslct.className = 'current';*/
  
  initJS(_seccion);
}


/*CONTACTO*/
function init_contacto(){
	 $("#user_type").selectbox().bind('change', function(){});
	 $("#destinatario").selectbox().bind('change', function(){});
	 
	 $("input.file_1").filestyle({ 
          image: "data/img/add_bot.png",
          imageheight : 20,
          imagewidth : 21,
          width : 158
     });
}


	
	
/*NOTICIA*/
function init_noticia(){
    $(function() {
        var settings = { containerResizeSpeed: 350
            };
            $('#Mfotos a').lightBox(settings);
    });
}






function initJS(_seccion){
	 this['init_'+_seccion]();
}




/*CONTENIDO*/
var Lcont = false; 
if (window.ActiveXObject) {
  try{
    Lcont = new ActiveXObject("Msxml2.XMLHTTP");
  }
  catch(e1) {
    try{
      Lcont = new ActiveXObject("Microsoft.XMLHTTP");
    }
    catch(e2){ }
  }
}
else if (window.XMLHttpRequest) {
  Lcont = new XMLHttpRequest();
}

function loadCont(_seccion){
	var _file='data/htm/'+_seccion+'.htm';
	
	if(Lcont) {
		//menu
		 var obj = document.getElementById('Cright');
		 Lcont.open("GET", _file); 
		 Lcont.onreadystatechange = function()  { 
			if (Lcont.readyState == 4) { 
				 obj.innerHTML = Lcont.responseText;
				 initJS(_seccion);
			}
			else{
				
			}
		 } ;
		 Lcont.send(null); 
	}	
}


function nueva_noticia(){
	loadCont('noticia');
}



/*MENU ITEMS/PAGINA */
function Mitems() {
  $('#menu ul').hide();
  
  $('#M'+_seccion).slideDown('slow');
  
  Bslct = getEl('B'+_seccion);
  Bslct.className = 'current';
}


function init_inicio(){
	
	 $(function() {
		$('body a').tooltip({
			track: true,
			delay: 0,
			showURL: false,
			showBody: " - ",
			fade: 250
		});
	});
	
	 
	 $(function() {
        var settings = { containerResizeSpeed: 350
            };
            $('#Mfotos a').lightBox(settings);
    });	
}




/*INICIO*/
function init(_seccion){
	initMenu(_seccion);	
}

/*VARIOS*/
function inpON(which){
	which.style.color = '#000000';
}


/*ISO Logo*/
function showIso(){
	 $('.Liso_off').hide();
	 $('.Liso_on').show();
	 $('.Liso_info').show();
}

function hideIso(){
	 $('.Liso_off').show();
	 $('.Liso_on').hide();
	 $('.Liso_info').hide();	
}


/*panel*/
function show_Mfoto(Mfoto_ID){
	document.getElementById('Mfoto_'+Mfoto_ID).style.display='block';
}


function hide_Mfoto(Mfoto_ID){
	document.getElementById('Mfoto_'+Mfoto_ID).style.display='none';
}
	
	
/*/////// FORMULARIOS //////*/
function checkForm(form_type){
	this['checkForm_'+form_type]();
}

/* contacto */
function checkForm_contacto(Fcontacto){
	var _nombre=document.Fcontacto.nombre.value.length;
	var _correo=document.Fcontacto.correo.value.length;
	var _mensaje=document.Fcontacto.mensaje.value.length;
	
	if(_nombre==0 || _correo==0 || _mensaje==0){
		showAlert('contacto',_nombre,_correo,_mensaje);
	}
	else{
		document.Frrhh.submit();
	}
}

function checkAlert_contacto(var1,var2,var3){
	_nombre=var1;
	_correo=var2;
	_msje=var3;
	if(_nombre==0){
		document.getElementById('A_nombre').style.display='block';
	}
	if(_correo==0){
		document.getElementById('A_correo').style.display='block';
	}
	if(_msje==0){
		document.getElementById('A_mensaje').style.display='block';
	}
}


/* rrhh */
function checkForm_rrhh(){
	var _nombre_rrhh=document.Frrhh.rrhh_nombre.value.length;
	var _correo_rrhh=document.Frrhh.rrhh_correo.value.length;
	var _doc_rrhh=document.Frrhh.archivo.value.length;
	
	
	if(_nombre_rrhh==0 || _correo_rrhh==0 || _doc_rrhh==0){
		showAlert('rrhh',_nombre_rrhh,_correo_rrhh,_doc_rrhh);
	}
	else{
		document.Frrhh.submit();	
	}	
}

function checkAlert_rrhh(var1,var2,var3){
	_nombre_rrhh=var1;
	_correo_rrhh=var2;
	_doc_rrhh=var3;
	if(_nombre_rrhh==0){
		document.getElementById('A_nombre').style.display='block';
	}
	if(_correo_rrhh==0){
		document.getElementById('A_correo').style.display='block';
	}
	if(_doc_rrhh==0){
		document.getElementById('A_doc').style.display='block';
	}
}



function showAlert(form_type, var1, var2, var3){
	document.getElementById('Falert').style.display='block';
	document.getElementById('Balert').style.display='block';
	document.getElementById('Calert').style.display='block';
	
	setTimeout(this['checkAlert_'+form_type](var1,var2,var3),500);
	
}

function closeAlert(){
	document.getElementById('A_nombre').style.display='none';
	document.getElementById('A_correo').style.display='none';	
	document.getElementById('A_mensaje').style.display='none';
	document.getElementById('A_doc').style.display='none';
	document.getElementById('Calert').style.display='none';
	document.getElementById('Cresp').style.display='none';
	document.getElementById('Falert').style.display='none';
	document.getElementById('Balert').style.display='none';
}

function show_Ciso(){
	if(this.Ciso_open!=true){
		this.Ciso_open=true;
		document.getElementById('Ciso').style.display='block';
		hide_Ccidemco();
		hide_Cce();
	}
	else{
		hide_Ciso();
	}
}

function hide_Ciso(){
	this.Ciso_open=false;
	document.getElementById('Ciso').style.display='none';
}

function show_Ccidemco(){
	if(this.Ccidemco_open!=true){
		this.Ccidemco_open=true;
		document.getElementById('Ccidemco').style.display='block';
		hide_Ciso();
		hide_Cce();
	}
	else{
		hide_Ccidemco();
	}
}

function hide_Ccidemco(){
	this.Ccidemco_open=false;
	document.getElementById('Ccidemco').style.display='none';
}

function show_Cce(){
	if(this.Cce_open!=true){
		this.Cce_open=true;
		document.getElementById('Cce').style.display='block';
		hide_Ciso();
		hide_Ccidemco();
	}
	else{
		hide_Cce();
	}
}

function hide_Cce(){
	this.Cce_open=false;
	document.getElementById('Cce').style.display='none';
}


function  openCatalogo(){
	this.catOpen=true;
	document.getElementById('Cright').style.display='none';
	document.getElementById('Cleft').style.display='none';
	document.getElementById('Binfoad').style.display='none';
	document.getElementById('Lfondo_C').style.display='none';
	
	document.getElementById('Ccatalogo').style.display='block';
	var sW=document.getElementById('Ccatalogo').offsetWidth;
	var sH=document.getElementById('Ccatalogo').offsetHeight;
	document.getElementById('Rcat').style.width=sW+'px';
	catH=sH-120;
	document.getElementById('Rcat').style.height=catH+'px';
	
	adj_Rcat();
}

function check_catON(){
	if(this.catOpen==true){
		adj_Rcat();
	}	
}

function adj_Rcat(){
	var sW=document.getElementById('Ccatalogo').offsetWidth;
	var sH=document.getElementById('Ccatalogo').offsetHeight;
	document.getElementById('Rcat').style.width=sW+'px';
	catH=sH-120;
	document.getElementById('Rcat').style.height=catH+'px';	
}

function  closeCatalogo(){
	this.catOpen=false;
	document.getElementById('Ccatalogo').style.display='none';
	
	document.getElementById('Cright').style.display='block';
	document.getElementById('Cleft').style.display='block';
	document.getElementById('Binfoad').style.display='block';
	document.getElementById('Lfondo_C').style.display='block';
}
