var confirmMsg  = 'Pytanie';
function confirmLink(theLink, theSqlQuery)
{
	if (confirmMsg == '' || typeof(window.opera) != 'undefined') {
		return true;
	}
	var is_confirmed = confirm(confirmMsg + ' :\n' + theSqlQuery);

	if (is_confirmed) {
		theLink.href += '&is_js_confirmed=1';
	}
	return is_confirmed;
}
function highlightLink()
{
	thisPage = document.URL.substring(document.URL.lastIndexOf("/")+1 ,document.URL.length);
	for (i=0; i<document.links.length; i++ )
	{
		pageLink = document.links[i].href.substring(document.links[i].href.lastIndexOf("/")+1 ,document.links[i].href.length);
		if (thisPage == pageLink)
		{	
			document.links[i].style.color = "#933202";
		}
		
	}
}


window.onload=function()
{
	highlightLink();
}
