var enProceso = false; // lo usamos para ver si hay un proceso activo
var http = getHTTPObject(); // Creamos el objeto XMLHttpRequest
var enProceso1 = false; // lo usamos para ver si hay un proceso activo
var http1 = getHTTPObject(); // Creamos el objeto XMLHttpRequest

function getHTTPObject() 
{
	var xmlhttp=false; 
	try { 
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); 
	} 
	catch (e) { 
		try { 
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); 
		} 
		catch (E) { 
			xmlhttp = false; 
		} 
	}
	if (!xmlhttp && typeof XMLHttpRequest!='undefined') { 
		xmlhttp = new XMLHttpRequest();
	}
	return xmlhttp;
}

function getMercadoGranos(grano) {
    if (!enProceso1) { 
		enProceso1 = true;
		http1.open("GET", "includes/cgGetMercadoGranos.asp?grano="+ grano, true);
		http1.onreadystatechange = handleHttpResponseMercadoGranos;
		http1.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
		http1.send(null);
    }
}

function handleHttpResponseMercadoGranos() { 
    if (http1.readyState == 4) { 
       if (http1.status == 200) { 
			 document.getElementById('divMercadoGranos').innerHTML = http1.responseText;
			 enProceso1 = false;
       }
    }
}

function getPreciosPizarra(grano) {
    if (!enProceso) { 
		enProceso = true;
		http.open("GET", "includes/cgGetPreciosPizarra.asp?grano="+ grano, true);
		http.onreadystatechange = handleHttpResponsePreciosPizarra;
		http.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
		http.send(null);
    }
}

function handleHttpResponsePreciosPizarra() { 
    if (http.readyState == 4) { 
       if (http.status == 200) { 
			 document.getElementById('divPreciosPizarra').innerHTML = http.responseText;
			 enProceso = false;
       }
    }
}

function cambiaClasePreciosPizarra(objeto)
{
	if(objeto=='soja')
		{
		document.getElementById('dsojap').className="subtitulos_precios_pizarraSelect";
		document.getElementById('asojap').className="subtitulos_precios_pizarraSelect";
		document.getElementById('dtrigop').className="subtitulos_precios_pizarra";
		document.getElementById('atrigop').className="subtitulos_precios_pizarra";
		document.getElementById('dmaizp').className="subtitulos_precios_pizarra";
		document.getElementById('amaizp').className="subtitulos_precios_pizarra";
		document.getElementById('dgirasolp').className="subtitulos_precios_pizarraFin";
		document.getElementById('agirasolp').className="subtitulos_precios_pizarraFin";
		}
	if(objeto=='trigo')
		{
		document.getElementById('dsojap').className="subtitulos_precios_pizarra";
		document.getElementById('asojap').className="subtitulos_precios_pizarra";
		document.getElementById('dtrigop').className="subtitulos_precios_pizarraSelect";
		document.getElementById('atrigop').className="subtitulos_precios_pizarraSelect";
		document.getElementById('dmaizp').className="subtitulos_precios_pizarra";
		document.getElementById('amaizp').className="subtitulos_precios_pizarra";
		document.getElementById('dgirasolp').className="subtitulos_precios_pizarraFin";
		document.getElementById('agirasolp').className="subtitulos_precios_pizarraFin";
		}
	if(objeto=='maiz')
		{
		document.getElementById('dsojap').className="subtitulos_precios_pizarra";
		document.getElementById('asojap').className="subtitulos_precios_pizarra";
		document.getElementById('dtrigop').className="subtitulos_precios_pizarra";
		document.getElementById('atrigop').className="subtitulos_precios_pizarra";
		document.getElementById('dmaizp').className="subtitulos_precios_pizarraSelect";
		document.getElementById('amaizp').className="subtitulos_precios_pizarraSelect";
		document.getElementById('dgirasolp').className="subtitulos_precios_pizarraFin";
		document.getElementById('agirasolp').className="subtitulos_precios_pizarraFin";
		}
	if(objeto=='girasol')
		{
		document.getElementById('dsojap').className="subtitulos_precios_pizarra";
		document.getElementById('asojap').className="subtitulos_precios_pizarra";
		document.getElementById('dtrigop').className="subtitulos_precios_pizarra";
		document.getElementById('atrigop').className="subtitulos_precios_pizarra";
		document.getElementById('dmaizp').className="subtitulos_precios_pizarra";
		document.getElementById('amaizp').className="subtitulos_precios_pizarra";
		document.getElementById('dgirasolp').className="subtitulos_precios_pizarraFinSelect";
		document.getElementById('agirasolp').className="subtitulos_precios_pizarraFinSelect";
		}
}

function cambiaClaseMercadoGranos(objeto)
{
	if(objeto=='soja')
		{
		document.getElementById('dsoja').className="subtitulos_merc_granosSelect";
		document.getElementById('asoja').className="subtitulos_merc_granosSelect";
		document.getElementById('dtrigo').className="subtitulos_merc_granos";
		document.getElementById('atrigo').className="subtitulos_merc_granos";
		document.getElementById('dmaiz').className="subtitulos_merc_granos";
		document.getElementById('amaiz').className="subtitulos_merc_granos";
		document.getElementById('dgirasol').className="subtitulos_merc_granosFin";
		document.getElementById('agirasol').className="subtitulos_merc_granosFin";
		}
	if(objeto=='trigo')
		{
		document.getElementById('dsoja').className="subtitulos_merc_granos";
		document.getElementById('asoja').className="subtitulos_merc_granos";
		document.getElementById('dtrigo').className="subtitulos_merc_granosSelect";
		document.getElementById('atrigo').className="subtitulos_merc_granosSelect";
		document.getElementById('dmaiz').className="subtitulos_merc_granos";
		document.getElementById('amaiz').className="subtitulos_merc_granos";
		document.getElementById('dgirasol').className="subtitulos_merc_granosFin";
		document.getElementById('agirasol').className="subtitulos_merc_granosFin";
		}
	if(objeto=='maiz')
		{
		document.getElementById('dsoja').className="subtitulos_merc_granos";
		document.getElementById('asoja').className="subtitulos_merc_granos";
		document.getElementById('dtrigo').className="subtitulos_merc_granos";
		document.getElementById('atrigo').className="subtitulos_merc_granos";
		document.getElementById('dmaiz').className="subtitulos_merc_granosSelect";
		document.getElementById('amaiz').className="subtitulos_merc_granosSelect";
		document.getElementById('dgirasol').className="subtitulos_merc_granosFin";
		document.getElementById('agirasol').className="subtitulos_merc_granosFin";
		}
	if(objeto=='girasol')
		{
		document.getElementById('dsoja').className="subtitulos_merc_granos";
		document.getElementById('asoja').className="subtitulos_merc_granos";
		document.getElementById('dtrigo').className="subtitulos_merc_granos";
		document.getElementById('atrigo').className="subtitulos_merc_granos";
		document.getElementById('dmaiz').className="subtitulos_merc_granos";
		document.getElementById('amaiz').className="subtitulos_merc_granos";
		document.getElementById('dgirasol').className="subtitulos_merc_granosFinSelect";
		document.getElementById('agirasol').className="subtitulos_merc_granosFinSelect";
		}
}