function overProductos(){
         document.getElementById('capaProductos').style.visibility = 'visible';
      }
function outProductos(){
         document.getElementById('capaProductos').style.visibility = 'hidden';
      }
function cambiaColor(obj,color){
        obj.style.backgroundColor = color ;
      }

function validarEmail(valor) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(valor)) return (true)
	 else  return (false);  
}

function trim(cadena)
{
	for(i=0; i<cadena.length; )
	{
		if(cadena.charAt(i)==' ')
			cadena=cadena.substring(i+1, cadena.length);
		else
			break;
	}

	for(i=cadena.length-1; i>=0; i=cadena.length-1)
	{
		if(cadena.charAt(i)==' ')
			cadena=cadena.substring(0,i);
		else
			break;
	}
	
	return cadena;
}
