function show_file_dl(what,pagename)
{
	if(what == "60_lecie")
		showFile = "60_lecie";
	else if (what == "historia")
		showFile = "historia";
	else if ( what == "patron" )
		showFile = "patron";
	else
		return true;
		
	if (typeof pagename=="undefined")
		pagename = "index.html";
	else 
		pagename = pagename + ".html";

	file = showFile + "_ajax/" + pagename;

	new Ajax.Request(file, {
	method: 'get',
	onCreate : function() 
					{ 
						pageScroll();
					},
	onSuccess : function(transport) 
					{ 
						show_dark_layer();
						closelabel = '<div class="bottomNavClose" id="bottomNavClose"><a href="#" onClick="hide_dark_layer();"><img src="images/closelabel.gif"/></a></div>';
        
						document.getElementById('dark_layer_text').innerHTML = transport.responseText + closelabel;
					}
	});
}

function select_file_dl(content,nr)
{
	new Ajax.Request('file.php?file=' + content + '.php&newsid=' + nr, {
	method: 'get',
	onCreate : function() 
					{ 
						pageScroll();
						show_dark_layer();
					},
	onLoading : function(transport) 
					{ 
						document.getElementById('dark_layer_text').innerHTML = '<center><br><Br><BR><img src="images/loader.gif"></center>';
					},
	onSuccess : function(transport) 
					{ 
						closelabel = '<div class="bottomNavClose" id="bottomNavClose"><a href="#" onClick="hide_dark_layer();"><img src="images/closelabel.gif"/></a></div>';

						document.getElementById('dark_layer_text').innerHTML = transport.responseText + closelabel;
						traverseElement(document.getElementById('dark_layer_text'), 0); 
					}
	});	
}

function show_dark_layer()
{
	document.getElementById('dark_layer').style.display = "block";
	document.getElementById('dark_layer_text').style.display = "block";
}

function hide_dark_layer()
{
  
	Effect.Fade('dark_layer_text');
	setTimeout(function () { 
							document.getElementById('dark_layer').style.display = "none";
							document.getElementById('dark_layer_text').innerHTML = "";
							}, 800);
}

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function pokaz_info_60lat()
{
    select_60lat_file();
}

function select_60lat_file(name)
{
	show_file_dl("60_lecie",name);
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function pokaz_info_history()
{
    select_history_file();
}

function select_history_file(nr)
{
	if (nr == 0)
	{
		show_file_dl("historia");
		return true;
	}
	
	if (typeof nr!="undefined")
		nr = "podstrona"+nr;
		
	show_file_dl("historia",nr);
}
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function pokaz_info_patron()
{
    select_patron_file();
}

function select_patron_file(nr)
{
	if (nr == 0)
	{
		show_file_dl("patron");
		return true;
	}
	
	if (typeof nr!="undefined")
		nr = "podstrona"+nr;
		
	show_file_dl("patron",nr);
}
