

   function skype_check(acc,id,label){
	$.ajax({
                type: "GET",
                url: main_url+"skype_check.php",
                data: "skype="+acc,
                success: function(msg){
                    if(msg==2){
                       $('#'+id).attr('src','img/skype'+label+'.gif');
                    }
                }
            });
   }

   function yahoo_check(acc,id,label){
	$.ajax({
                type: "GET",
                url: main_url+"yahoo_check.php",
                data: "yahoo="+acc,
                success: function(msg){
                
                    if(msg=='01'){
                       $('#'+id).attr('src','img/yahoo'+label+'.gif');
                    }
                }
            });
   }

