// Documento Javascript
function MuestrearKey(tecla,opcion)
{
   if (opcion == 'letras'){
		if ((tecla >= 65 && tecla <= 90) || (tecla >= 97 && tecla <= 122) || (tecla == 241) || (tecla == 209)) {
			window.event.keyCode=tecla; }
		else {
			window.event.keyCode = 0; }
   }
   if (opcion == 'numeros') {
		if (tecla >= 48 && tecla <= 57) {
			window.event.keyCode = tecla; }
		else {
			window.event.keyCode = 0; }
   }
}

///////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////// PARA NETSCAPE Y MOZILLA /////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////
function MuestrearNumerosN(tecla)
{
	if (tecla.which >= 48 && tecla.which <= 57)
		return true;
	else if(tecla.which != 8 && tecla.which != 13 && tecla.which != 0)
		return false;
}


function MuestrearLetrasN(tecla)
{
	if ((tecla.which >= 65 && tecla.which <= 90) || (tecla.which >= 97 && tecla.which <= 122) || (tecla.which == 241) || (tecla.which == 209))
		return true;
	else if(tecla.which != 8 && tecla.which != 13 && tecla.which != 0)
		return false;
}




function estilosie() 
{
    if (document.all) 
    {
		document.getElementById("cetralderecha").style.marginLeft = "140px";
		document.getElementById("cetralderecha").style.width = "580px";
	    document.getElementById("dondeestamos").style.width = "580px";
    	document.getElementById("dondeestamos").style.marginLeft = "140px";
	    document.getElementById("dondeestamos").style.backgroundImage = "url(../images/fondo_dondeestamos.jpg)";
    }
}

function checkthis(objeto)
{
    var objemail = document.getElementById("divmasinfo");
    if (objeto.checked == true)
    {
	    objemail.style.display = "block";
    }
	else
    {
	    objemail.style.display = "none";
    }
}

function XXXblurtexto(objeto) 
{
alerte("eayyy");
    if ( objeto.value == "" ) 
    {
	    objeto.value = "Introduzca E-mail o Dirección";
    }
}

function XXXfocustexto(objeto) 
{
alerte("eaxxx");
    if ( objeto.value == "Introduzca E-mail o Dirección" ) 
    {
	    objeto.value = "";
    }
}




