// JavaScript Document
function inicio(){

if (document.getElementById('usuario').value==''){
	alert('Debe escribir su usuario');
	document.getElementById('usuario').focus();
	return false;
}

if (document.getElementById('clave').value==''){
	alert('Debe escribir su clave');
	document.getElementById('clave').focus();
	return false;
}

document.getElementById('formulari').submit();

}

function CheckNumeric(obj)
{
   // Get ASCII value of key that user pressed
   var key = window.event.keyCode;

   // dejar introducir nmeros 0..9 o barra /
   if ( key > 47 && key < 58 )
      return;
   else
 
	  window.event.returnValue = null;
} 

function comprobar(){

	
	
if (document.getElementById('email').value==""){
		alert("El email debe ser valido");
	document.getElementById('email').focus();
	return false;
	
	}else{

	var email = document.getElementById('email').value;
	var pos = email.indexOf("@");	
	var punto = email.indexOf(".");

	
		if (pos<=1){
			alert("El email debe ser valido");
		document.getElementById('email').focus();
		return false;
		
		}
	}


document.getElementById('contacto').submit();

}

function activar(obj){
	
	document.getElementById('empresa').className="oculto";
	document.getElementById('referencias').className="oculto";
	document.getElementById('premios').className="oculto";	
	
	document.getElementById(obj).className="activo";
	
	}
