function getStars(rating) {
    var imgStr = "";

    if (rating == 5) {

        imgStr = '<img src="http://www.doctoroogle.com/images/5stars_or.png" border="0" style="margin:-3px;padding:0px;" />';
    } else if (rating == 4.5) {

        imgStr = '<img src="http://www.doctoroogle.com/images/4.5stars.png" border="0" style="margin-bottom:-2px;padding:0px;" />';

    } else if (rating == 4) {

        imgStr = '<img src="http://www.doctoroogle.com/images/4stars.png" border="0" style="margin-bottom:-2px;padding:0px;" />';

    } else if (rating == 3.5) {
        
        imgStr = '<img src="http://www.doctoroogle.com/images/3.5stars.png" border="0" style="margin-bottom:-1px;padding:0px;" />';

    } else if (rating == 3) {

        imgStr = '<img src="http://www.doctoroogle.com/images/3stars.png" border="0" style="margin-bottom:-2px;padding:0px;" />';

    } else if (rating == 2.5) {

        imgStr = '<img src="http://www.doctoroogle.com/images/2.5stars.png" border="0" style="margin-bottom:-4px;padding:0px;" />';

    } else if (rating == 2) {

        imgStr = '<img src="http://www.doctoroogle.com/images/2stars.png" border="0" style="margin-bottom:-4px;padding:0px;" />';


    } else if (rating == 1) {

        imgStr = '<img src="http://www.doctoroogle.com/images/1stars.png" border="0" style="margin-bottom:-4px;padding:0px;" />';

    }
    return imgStr;
}
function getRating_createUI(userID,elemID) {
    var surl = 'http://www.doctoroogle.com/getJSON.cfc?method=remoteGetPerson&dentistID='+userID+'&callback=?';

    $.getJSON(surl, function(data) {
        document.getElementById(elemID).innerHTML = '<div class="getRating_createUI">'+
                            '<div>'+
				'<a title="'+data.NAME+' is a '+data.RATING+' star '+data.DOC+' based on '+data.NOREVIEWS+' reviews" class="getRating_bold" href="http://www.doctoroogle.com/'+userID+'" target="_blank"><span class="getRating_name">'+data.NAME+'</span> '+
                                'is rated '+
                                '<span class="getRating_score">#'+data.RANK+'</span>'+
                            '</div>'+
                            '<div>'+
//                                ' on <img src="http://69.59.169.141/badge.jpg" alt="Dr. Oogle" /> '+
                                'out of <span class="getRating_special">'+data.RECORDCOUNT+'</span> '
                                +data.CITY+ ' ' +data.SPECIALTY+
                            '</div>'+
                            '<div>'+
                                getStars(data.RATING)+ ' based on'+
                                '<span class="getRating_special"> '+data.NOREVIEWS+'</span> reviews'+
                                '<span class="getRating_special"> '+data.PRICERANGE+'</span>'+ '</a> '+

                            '</div>'+
                        '</div>';
    });
}
