// JavaScript Document
function ordenar_hosting(xplan)
{
	
	xhtml = $.ajax({
		   type: "POST",
		   url: "data_hosting.php",
		   async: true,
		   data: "txtplan=" + xplan + "&txtipo=1&rand=" + (Math.random()*100),
		   success: function(xhtml){   
				var txt = xhtml;
				if(txt == 'si')
				{
					document.location.href = 'buscar_dominio.php';
				}
			}
	});	
	
}
