function showPackageDetails ( package_id )
{

	var dialog = $('<div style="display:hidden" id="newDialog"></div>').appendTo('body');

	$("#newDialog").html("<image src='../img/progressAnimation.gif'/><a>&nbsp; Cargando...<a/>");
				
	$("#newDialog").dialog({ 
		bgiframe: true,
		buttons: { "Cerrar": function() { $(this).dialog("close"); } },
		modal: true,
		title: "Detalle del Paquete" ,
		height: 437,
		width: 577,
		close: function() {
			$("#newDialog").remove();
		}
	});
	

	//load Package Details
	//the AJAX request
	$.ajax({
		   type: "POST",
		   url: "../packageDetails.php",
		   data: "package_id="+package_id,
		   success: function( msg ) {
		
				if ( msg != '' ) {
	
					$("#newDialog").html( msg );
						
				}	   	   
	
		   }
	});
	
}

