function obj_degradado_div_body_vertical(obj,colorsup,colorinf)    {  
//RELLENA FONDO DEGRADADO DE ARRIBA A ABAJO EN UN DIV
//EL INVOQUE DEBE HACERSE EN EL ONLOAD DEL BODY O EN EL DOMREADY SI SE UTILIZA MOOTOOLS
//EL DIV DEBE SER DEFINIDO ASI 	   <div id="fondo" name="fondo"></div>
	obj.style.display = "block"; //NECESARIO PARA PODER REDIMENSIONAR
	obj.style.position = "absolute";
	obj.style.zIndex = -1;

    //ASIGNA ANCHO
	if (window.contentDocument) { //CONTENTDOCUMENT NO DISP. EN IE //SUMO 10 Y 16 PARA SANGRIA INFERIOR SEGUN NAVEGADOR
		  obj.style.width = window.contentDocument.body.scrollWidth + 'px';
    } else {
		  obj.style.width = window.document.body.scrollWidth + 'px';
    }
	
//	obj.style.width = obj.parentNode.scrollWidth + 'px';	 

    //ASIGNA ALTO
    obj.style.height = '430px'; //obj.parentNode.offsetHeight + 'px';	 
    
	//ASIGNA TOP
    obj.style.top = '0px';	 

	//ASIGNA LEFT
    obj.style.left = '0px';	 

    var colores = transitar(colorsup, colorinf, 430);
	var tabla = '<table id="tabla_inner_degradado" cellpadding="0" cellspacing="0" width="' + obj.parentNode.scrollWidth + 'px" height="100%">'; 
    for (var i = 0; i < colores.length; i ++) 
        tabla += '<tr><td width="100%" height="1px" style="background-color:' + colores[i] + ';"></td></tr>'; 
        tabla += '</table>'; 
    obj.innerHTML = tabla; 
} 

