function show(item)
{
    if (item.style.display=='none')
    {
        item.style.display='';
    }
    else
    {
        item.style.display='none'
    }        
}

function DisplaySong( s, i, title_style_aux, body_style_aux )
{
    var style_name = "cursor:hand;";
    var style_body = "";
    if ( title_style_aux )
    {
        style_name += title_style_aux;
    }
    if ( body_style_aux )
    {
        style_body += body_style_aux;
    }    

    document.write( s.title+" ["+s.year+"/"+s.month+"/"+s.day+" "+(s.hour<10?"0":"")+s.hour+":"+(s.minute<10?"0":"")+s.minute+"]" );

}

function DisplaySongs( style1, style2, hide_hr )
{
    var n = 10; // default
    if ( blogamp_num_songs )
    {
        n = blogamp_num_songs;
    }
    for ( i = 0; i < blogamp_num_songs; i++ )
    {
        if ( musics[i] )
        {
            //DisplaySong( musics[i], i, "", ""  );
            DisplaySong( musics[i], i, style1, style2, hide_hr );
        }
    }
}