// BOFHnet kgs@biuro.net.pl

function showWindow(sDiv, sClass, sTitle){
	var iHash = sDiv.indexOf('#');
	if (iHash>=0)
        sDiv = sDiv.substr(iHash+1);
	else
	    sDiv = '';
	oDiv = document.getElementById(sDiv) || alert('Nie znalazlem diva: '+sDiv);
	oWindow = document.getElementById('SFwindow');
	oContent = document.getElementById('SFwindowContent');
	if (oDiv && oWindow && oContent){
	    oContent.innerHTML = oDiv.innerHTML;
	    oWindow.style.display = 'block';
	    oWindow.className = sClass;
	}
}
function hideWindow(){
    oWindow = document.getElementById('SFwindow');
    oContent = document.getElementById('SFwindowContent');
    if (oWindow){
        if (oContent)
            oContent.innerHTML = '';
        oWindow.style.display = 'none';
        oWindow.className = '';
    }
}
