function solonumeros(tecla){
  if (!((tecla >= 48 && tecla <= 57) || (tecla >= 96 && tecla <= 105) || (tecla >= 16 && tecla <= 20) || (tecla >= 35 && tecla <= 40) || (tecla >= 112 && tecla <= 123) || tecla == 9 || tecla == 8 || tecla == 13 || tecla == 91 || tecla == 96 || tecla == 46 )){
				if (fmContacta.txtCP.value == 'Sólo Números')
					fmContacta.txtCP.value='';
	else {
		contenido=fmContacta.txtCP.value;
		setTimeout("fmContacta.txtCP.value='Sólo Números'", 100);	
		setTimeout("fmContacta.txtCP.value=contenido", 600);
		
	}
  }
  
}

function compruebanumeros(obj){
		obj.value=obj.value.replace(/[^0-9]{1,}/,"");
	}
	
function 	abrir(url,ventana)
{
	window.open(url,ventana,'type=fullWindow,channelmode=yes,fullscreen=1,toolbar=no,scrollbars=0,status=no');
	void(0);
}

function salta(formulario,origen,destino,longitud) 
{
	if (eval("document."+formulario+"." + origen + ".value.length") == longitud)
	{
					eval("document."+formulario+"." + destino + ".focus()");
	}
}
