// JavaScript Document		
   String.prototype.trim = function(){ return this.replace(/^\s+|\s+$/g,'') }

function dameFecha(){
	dows = new Array("Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado");
	months = new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
	now = new Date();
	dow = now.getDay();
	d = now.getDate();
	m = now.getMonth();
	h = now.getTime();
	y = now.getYear();
	cadena = dows[dow]+" "+d+" de "+months[m]+" de "+y;
	return cadena;
}

function big_banner( banner ){
	banner.style.width='165px';
	banner.style.height='40px';
}

function small_banner( banner ){
	banner.style.width='100px';
	banner.style.height='15px';	
}

function invisible( objeto_id ){
	objeto = document.getElementById( objeto_id );
	objeto.style.display='none';
}

function visible( objeto_id ){
	objeto = document.getElementById( objeto_id );	
	objeto.style.display='block';
}

function soloNumeros(){
	var key=window.event.keyCode;
	if (key < 48 || key > 57) window.event.keyCode=0;
}

function vacio( campo ){
	if( campo=='' ) return true;
	return false;
}

function validacion(formulario){
   var ultimo = formulario.length-1;
   for (var i=0; i<ultimo; i++) {  	// Menos 1 xq empieza en 0
	   formulario.elements[i].value = formulario.elements[i].value.trim();
       if( vacio( formulario.elements[i].value ) ){
		   alert( 'Debes rellenar todas los campos.' );
		   return false;
	   }
   }
   return true;
}

function cargarImagen(ruta){ 
var imagen; 
imagen = new Image();
imagen.src = ruta;
}

function Abrir_ventana(pagina){

    var opciones="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, width=800, height=600, top=85, left=140";
    window.open(pagina,"",opciones);
} 
