// JavaScript Document

function ChangeItem(item,box){
	
	
    try{
		if (item!='mision'){document.getElementById("mision").style.backgroundColor='#FFFFFF';document.getElementById("mision").style.color='#000000';}
		if (item!='vision'){document.getElementById("vision").style.backgroundColor='#FFFFFF';document.getElementById("vision").style.color='#000000';}
				
		document.getElementById("misionText").style.display='none';
		document.getElementById("visionText").style.display='none';
		
		document.getElementById(item).style.backgroundColor='#373737';
		document.getElementById(item).style.color='#FFFFFF';
		document.getElementById(box).style.display='';
    
	}catch(e){}
	
}

// Inicio Agregado Marisela
function ChangeItemC(item,box){
	try{
		
		if (item!='direcciones'){document.getElementById("direcciones").style.backgroundColor='#FFFFFF';document.getElementById("direcciones").style.color='#000000';}
		if (item!='comentarios'){document.getElementById("comentarios").style.backgroundColor='#FFFFFF';document.getElementById("comentarios").style.color='#000000';}
				
		document.getElementById("dirText").style.display='none';
		document.getElementById("comText").style.display='none';
		
		document.getElementById(item).style.backgroundColor='#373737';
		document.getElementById(item).style.color='#FFFFFF';
		document.getElementById(box).style.display='';
    
	}catch(e){}
}

function ChangeItemF(item,box){
	try{
		if (item!='cUbicarnos'){document.getElementById("cUbicarnos").style.backgroundColor='#FFFFFF';document.getElementById("cUbicarnos").style.color='#000000';}
		if (item!='sOfrecidos'){document.getElementById("sOfrecidos").style.backgroundColor='#FFFFFF';document.getElementById("sOfrecidos").style.color='#000000';}
		if (item!='pGestion'){document.getElementById("pGestion").style.backgroundColor='#FFFFFF';document.getElementById("pGestion").style.color='#000000';}
		
		document.getElementById("cUbicarnosText").style.display='none';
		document.getElementById("sOfrecidosText").style.display='none';
		document.getElementById("pGestionText").style.display='none';
		
		document.getElementById(item).style.backgroundColor='#373737';
		document.getElementById(item).style.color='#FFFFFF';
		document.getElementById(box).style.display='';
    
	}catch(e){}
}



function Valida(form){
var s = form.email.value;
var filter=/^[A-Za-z][A-Za-z0-9_]*@[A-Za-z0-9_]+\.[A-Za-z0-9_.]+[A-za-z]$/;

  if (form.email.value == "") { 
      alert("Introduzca un destinatario");
      form.email.focus();
      return false;
   }
   
   if (form.email.value != "") { 
     if (filter.test(s) == false) {
		alert("Ingrese una dirección de correo válida");
		 form.email.focus();
         return false;
		}
     }
  
   if (form.titulo.value == "") { 
      alert("Introduzca un titulo");
      form.titulo.focus();
      return false;
   }
   
    if (form.comentario.value == "") { 
      alert("Introduzca su comentario");
      form.comentario.focus();
      return false;
   }
   
  
   form.submit();
}

// Fin Agregado Marisela


function OpenVideo(){
window.open("/FlashPlayer/FlashPlayer.php","null",
    "height=350,width=425,status=yes,toolbar=no,menubar=no,location=no");
}