function addFav() {

 title = "Doliva"; 
  
 url = "http://www.doliva.pl";
  

	if (window.sidebar) { // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	} else if( window.external ) { // IE Favorite
		window.external.AddFavorite( url, title); }
	else if(window.opera && window.print) { // Opera Hotlist
		return true; }
 }

 
function  printWindow()	{
	window.print();
}

function powiadom()	{
	window.open("../global_inc/tfriend.php", null, "height=130,width=280,status=no,toolbar=no,menubar=no,location=no" );
}

function setFooter()
{
	var footer = document.getElementById('footer');
	
	iH 	= document.body.clientHeight; 
	iTH = document.body.scrollHeight;	


	if (iTH>iH)
	{
		footer.style.top = (iTH - 10) + 'px';		
	}
	else
	{
		footer.style.top = (iH - 25) + 'px';
	}
		
}