	function Validate(cont,$id){
		var id ;
	
		//remove all the class add the messagebox classes and start fading
		$("#"+cont).removeClass().addClass('').text('Loading...').fadeIn("slow");
	
		//check the username exists or not from ajax
		$.post("tools/ajax/image.php",{ ImageUrl:$id } ,function(data)
        {
			
			
		  if(data!='') //if username not avaiable
		  {
		  	$("#"+cont).fadeTo(200,0.1,function() //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  //document.getElementById('loader').innerHTML='';
			  $(this).html(data).addClass('').fadeTo(900,1);
			  
			});		
          }
		
        });
 
	
	}
