IndexJS = {};

$(function() {
    IndexJS.prepareUI();
});

IndexJS.prepareUI = function() {

    $('#InfoTextPopup').dialog(
    {
        autoOpen: false,
        modal: true,
        closeOnEscape: false,
        height: 300,
        width: 650
    });

};

IndexJS.displayInfoText = function() {

	var html = '';
	html += "<br>09.09.2010  ¶ 21:05 Uhr ¶ Deutschlandfunk ¶ Festspielpanorama: Sarband<br>";
	html += "<p>Das vollkommene Licht - Christliche und muslimische Lieder des Mittelalters zu den Geburtsfeiern von Mohammed und Jesus</p>";
	html += "<br>31.10.2010  ¶ 21:05 Uhr ¶ Deutschlandfunk ¶ Konzertdokument der Woche: Marco Beasley<br>";
	html += "<br>31.10.2010  ¶ 21:05 Uhr ¶ Deutschlandfunk ¶ Konzertdokument der Woche: Ross Daly<br>";
	
	$('#InfoTextPopup').html(html);	
	$('#InfoTextPopup').dialog('open');
	$('#InfoTextPopup').dialog('option', "position", 'center');
};
