function cargaHasta(){
	
document.getElementById("cargaHasta").innerHTML = "<img src='img/carga2.gif' width='16' height='16'>";	
var url = "asp/valorUFProyectos2.asp?opt=1";
var url = "asp/funciones.asp?opcion=8&id=idHasta&h=1";

var enProceso = false;
var http = getHTTPObject();
var results = "";
if (!enProceso && http) {
	   http.open("GET", url, true);
       http.onreadystatechange = function(){
    if (http.readyState == 4) {
	   if (http.status == 200) {
			 document.getElementById("cargaHasta").innerHTML = http.responseText;
             enProceso = false;			 
          }
       }
    };
	   enProceso = true;
       http.send(null);
}

}//Fin Funcion.
/***************************************************************************************************************************************************/
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/***************************************************************************************************************************************************/
function cargaDesde(){
	
document.getElementById("cargaDesde").innerHTML = "<img src='img/carga2.gif' width='16' height='16'>";	
var url = "asp/valorUFProyectos2.asp?opt=0";
var url = "asp/funciones.asp?opcion=8&id=idDesde&h=0";

var enProceso = false;
var http = getHTTPObject();
var results = "";
if (!enProceso && http) {
	   http.open("GET", url, true);
       http.onreadystatechange = function(){
    if (http.readyState == 4) {
	   if (http.status == 200) {
			 document.getElementById("cargaDesde").innerHTML = http.responseText;
             enProceso = false;			 
          }
       }
    };
	   enProceso = true;
       http.send(null);
}


}//Fin Funcion.
