function doAjax(unde)
{
	$.ajax({
		  type: "GET",
		  cache: false,
  		url: unde,
  		dataType: "script",
  		success: function(){
  			
	   	},
	   	error: function(){
	   		alert("Connection error!");
	   	}
		});
} 
