function vote( which )
{    
    ajax_comm( "vote.php" , function( request ){
                                    if (request.readyState == 4) {
                                        alert(request.responseText);
                                        location.reload();
                                    }
                            } , "vote="+which );
}

function write_graph( index , count , total_count , max_width , height , color )
{
    var percents = (total_count > 0 ? count/total_count : 0);
    document.write( "<div id=\"graph_"+index+"\" style=\"max-width:"+parseInt(percents*max_width)+"px; height:"+height+"px;background-color:"+color+";cursor:pointer;min-width:"+ parseInt(max_width/10) +"px;\" onclick=\'vote("+ index +")\'>"+parseInt(percents*100)+"%</div>" );
}


function write_toplist()
{
    document.write ('<a href="http://www.toplist.cz/"><img src="http://toplist.cz/count.asp?id=1056185&amp;logo=btn&amp;http='+escape(top.document.referrer)+'&amp;wi='+escape(window.screen.width)+'&amp;he='+escape(window.screen.height)+'" width="80" height="15" alt="TOPlist" /></a>');
}

