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, hide_hr )
{
    var space = "&nbsp;&nbsp;&nbsp;&nbsp;";
    var style_name = "cursor:hand;";
    var style_body = "display:'none';";
    if ( title_style_aux )
    {
        style_name += title_style_aux;
    }
    if ( body_style_aux )
    {
        style_body += body_style_aux;
    }    

    document.write( s.title );

    
    
    

    
}

function DisplaySongs( style1, style2, hide_hr )
{
    var n = 11; // default
    if ( 1 )
    {
        n = 1;
    }
    for ( i = 0; i < 1; i++ )
    {
        if ( musics[i] )
        {
            //DisplaySong( musics[i], i, "font-family:Arial;font-weight:bold;font-size:8pt;", "font-family:Arial;font-size:8pt;"  );
            DisplaySong( musics[i], i, style1, style2, hide_hr );
        }
    }

}
