// JavaScript Document
function claim_offerta(){

	 $.post("claim_offerta.asp", function(data) {

						$("#offerte").html(data);
						$('#offerte a h3').pulse({
							
							speed: 500,		
							//opacityRange: [0.4,1],
							textColors: ['#CD0110','#ccffcc']
							//backgroundColors: ['green','red'],		
							//duration: 10000
						
							});			 
			});
 }
 
 
function list(){
	 $.post("privata_offerta_list.asp", function(data) {
						 $("#list").html(data);
						 $(".delete_offerta").click(function(){
							 risp = window.confirm("Sei Sicuro?");
							if (risp==true)
							{
								var id = $(this).attr("param");
								
								$.post("privata_offerta_delete.asp?id="+id, function(data) {
											 $("#info").html(data);
											 list();
								});
							}
							
							return false;


							});
						 
						 
						 
						 
						 
			});
 }
