	function piezasSeparadas(seleccionada){
		var radio=document.usedForm['r1']
		var tipo=new Array("EVAPORADORAS","CONDENSADORAS","ACCESORIOS");
		longitud=tipo.length
		for(a in tipo){
			if(seleccionada==tipo[a]){
				radio[1].checked=true;
				return;
			}
		}
		radio[0].checked=true;
	}
	
	function marcaSeleccionada(valor){
		var selec=document.usedForm['capacidad'];
		if(valor=="") return;
		longitud=selec.options.length;
		for(opcion=0; opcion<longitud; opcion++){
			if(selec.options[opcion].text==valor){
				selec.options[opcion].selected=true;
				return;
			}
		} //fin for
	}

