function renderInformationHtml(control, title, speaker, description, date){
    var nTitle = document.createElement('span');
    nTitle.className = 'title';
    nTitle.innerHTML = title;
    control.appendChild(nTitle);
    control.appendChild(document.createElement('br'));
    
    var nBar = document.createElement('img');
    nBar.setAttribute('src', getSkinPath('default', 'bar.png'));
    nBar.className = 'bar';
    control.appendChild(nBar);
    control.appendChild(document.createElement('br'));
    
    var nSpeakerAndDate = document.createElement('span');
    nSpeakerAndDate.innerHTML = speaker;
    nSpeakerAndDate.className = 'speakeranddate';
    control.appendChild(nSpeakerAndDate);
    control.appendChild(document.createElement('br'));
    
    control.appendChild(document.createElement('br'));
        
    var nDescription = document.createElement('span');
    nDescription.innerHTML = description;
    nDescription.className = 'description';
    control.appendChild(nDescription);
    
    control.appendChild(document.createElement('br'));
    
    var unique = window.location.search.substring(1);
    if(unique.indexOf('&') != -1)
      unique = unique.substring(0, unique.indexOf('&')-1);
    document.body.background = '/webcast/skins/_backgrounds/bakgrund_' + unique+ '.jpg'
}
