function changeYoutube( id )
{
    for( i=0; i<4; i++)
    {
        var video_id = document.getElementById('youtube_video' + i);
        if( video_id != undefined )
        {
            if( i == id)
            {
                video_id.style.display= 'block';
            }
            else
            {
                video_id.style.display= 'none';
            }

        }

    }

}
