// JavaScript Document

function cargarResultado(avar, fam){
var vistaresult, largo, ancho, angulos, pre1, blanco, gris, beige, perigord, terminacion, prov;
pre1= document.getElementById('cargandoanim1');
if(document.getElementById('terminacion')!=null){
terminacion = document.getElementById('terminacion').value;
}
angulos = document.getElementById('angulos').value;
ancho = document.getElementById('ancho').value;
largo = document.getElementById('largo').value;
blanco = document.getElementById('blanco').checked;
gris = document.getElementById('gris').checked;
beige = document.getElementById('beige').checked;
perigord = document.getElementById('perigord').checked;
vistaresult= document.getElementById('resultcontt');
	if(perigord==true){
			document.getElementById('terminacion').value="";
	document.getElementById('terminacion').disabled = true;
	}
if(avar!="seg"){
	if(document.getElementById('zona')!=null){
prov= document.getElementById('zona').options[document.getElementById('zona').selectedIndex].value;
	}
}
else{
	if(document.getElementById('zona1')!=null){
prov= document.getElementById('zona1').options[document.getElementById('zona1').selectedIndex].value;
	}
}
	ajax1=nuevoAjax();	
	if(fam!=1 && fam!=2){
		//alert("hI!");
	ajax1.open("GET", "../../Ajax/resultcubremuros.php?largo="+largo+"&ancho="+ancho+"&prov="+prov+"&angulos="+angulos+"&blanco="+blanco+"&gris="+gris+"&beige="+beige+"&fam="+fam+"&perigord="+perigord+"&terminacion="+terminacion,true);
	}
	else{
		ajax1.open("GET", "../../Ajax/resultcubremuros_t.php?largo="+largo+"&ancho="+ancho+"&prov="+prov+"&angulos="+angulos+"&blanco="+blanco+"&gris="+gris+"&beige="+beige+"&fam="+fam+"&perigord="+perigord+"&terminacion="+terminacion,true);
	}
	ajax1.onreadystatechange=function() {
		 if(ajax1.readyState==1){
                        pre1.style.visibility="visible";
						}
		if (ajax1.readyState==4) {
		 pre1.style.visibility="hidden";
		//confpreload.innerHTML = "Cargado OK.";
		vistaresult.innerHTML = ajax1.responseText
		
					if(document.getElementById('xxx')!=null){
				document.getElementById('perigord').disabled = false;
				document.getElementById('perig').style.color="#000000";
			}
			else{
				document.getElementById('perigord').disabled = true;
				document.getElementById('perig').style.color="#CCCCCC";
			}
	 	}
	}
	ajax1.send(null)
}