function nuevoAjax(){
	var xmlhttp=false;
	try {
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");  		// Creaci�n del objeto ajax para navegadores diferentes a Explorer
	} catch (e) {
		try {								// o bien
			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");		// Creaci�n del objeto ajax para Explorer
		} catch (E) {
			xmlhttp = false;
		}
	}

	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
		xmlhttp = new XMLHttpRequest();
	}
	return xmlhttp;
}
function mostrarModalidades(){
	//Numero de radios
	var i=0;
	var radios_num=document.frmCarrito.tipoPorte.length;
	var vacio=true;
	while(i<radios_num && vacio==true){
		if(document.frmCarrito.tipoPorte[i].checked==true){
			vacio=false;
		}
		i++;
	}
	if(vacio==false){
		document.getElementById("contenedorModalidad").style.display="";
		document.frmCarrito.btnEnvia.disabled=true;
		document.getElementById("confirmarCompra").style.display="";
	}else{
		alert("Selecciona el porte");
	}
}

function pedirCampos(modo){
	document.getElementById("contenedorCampos").style.display=modo;
	
}
