function setTopTen() {
    var DIV = document.getElementById('top_ranking_Area');
    while (DIV.hasChildNodes()) { DIV.removeChild(DIV.firstChild) }
    for (var i=0; i<10; i++) {
        var pfname = rankedPerformers[i];
        var name = pfname;
        if (pfname.length > 14) {
            name = pfname.substring(0, 14);                
            name += '...';            
        }
        var session_type = show_pf_online(pfname);
        document.write('<div id="rankinghere"><div class="clear"></div><div class="rankbg">');
        document.write('<div class="ranking_each"><div class="performerPhoto">');
        if(session_type > 100){
            document.write('<a href="javascript:openPreview(\''+pfname+'\');">');
            document.write('<img src="http://imageup.dxlive.com/WebArchive/'+pfname+'/thumbs/LinkedImage.jpg" width="64" height="48" border="0" /></a>');
        } else {
            document.write('<a href="javascript:openProfile(\''+pfname+'\');">');
            document.write('<img src="http://imageup.dxlive.com/WebArchive/'+pfname+'/thumbs/LinkedImage.jpg" width="64" height="48" border="0" /></a>');
        }
        document.write('</div><div class="rank_left"><div class="rank_number">'+(i+1)+'位</div>');
        document.write('<div class="performer_name">');
        document.write('<div>'+name+'</div>');
        if(session_type>=120){
            document.writeln( '<a href="javascript:openPreview(\''+pfname+'\');"><img src="/img/home/thumbs_2shot_grey.gif" width="70" height="15" /></a></div>');
        } else if(session_type>=115){
            document.writeln( '<a href="javascript:openPreview(\''+pfname+'\');"><img src="/img/home/thumbs_icon_session_grey.gif" width="70" height="15" /></div></a>');
        } else if(session_type>=100){
            document.writeln( '<a href="javascript:openPreview(\''+pfname+'\');"><img src="/img/home/thumbs_icon_standby_grey.gif" width="70" height="15" /></a></div>');
        } else {
            document.writeln( '<a href="javascript:openProfile(\''+pfname+'\');"><img src="/img/home/profile_grey.gif" width="70" height="15" /></a></div>');
        }
        document.write('</div>')
        document.write('</div><div class="clear"/></div></div></div></div>');
    }    
}

