function OnLoad() {

    var accordion = mint.gui.CreateAccordionWidget();
   
    accordion.openClass = "open";
    accordion.hoverClass = "hover";

    var ciekaweS = accordion.AddItem("header11", "target1", "panel1", "text", "rightbox/ciekawe_s_index.php");
   var shoutboxx = accordion.AddItem("header22", "target2", "panel1", "text", "shoutbox/index.php");
	accordion.OnSelect = function() {
		document.getElementById('sciemniacz').id = 'sciemniaczOn';
   }
   
   accordion.OnUpdate = function() {
		document.getElementById('sciemniaczOn').id = 'sciemniacz';
   }
}

function SendRequest() {
    var req = mint.Request();
    req.AddParam("imie", $("imie").value);
	req.AddParam("tresc", $("tresc").value);
    req.Send("shoutbox/dodaj.php", "target2");
}
function zamknij(nazwa) {
document.getElementById(nazwa).style.display = (document.getElementById(nazwa).style.display == 'none' ? 'block' : 'none');
document.getElementById('sciemniacz').style.display = (document.getElementById('sciemniacz').style.display == 'none' ? 'block' : 'none');
document.getElementById('procentOn').style.display = (document.getElementById('procentOn').style.display == 'none' ? 'block' : 'none');
}
