function autocomp()
{
	if (f = document.forms[0])
	{
		for(var noElement=0;noElement<f.elements.length;noElement++)
		{
			var element = f.elements[noElement]
			if((element.type == "text")||(element.type == "textarea"))
			{
				element.setAttribute('autocomplete', 'off');
				//alert(element.id+"="+element.getAttribute('autocomplete'));
			}
		}
	}
}

function Foto(img)
{
	gal = window.open('files/_popup.php?foto='+img, 'Galeria', 'width=670, height=510, left=0, top=0');
	gal.focus();
	void(0);
}

if (window.opera && (stopka = document.getElementById('footer')))
{
	window.onload = function()
	{
		autocomp();
		stopka.style.bottom = '20px';
	}
	window.onresize = function() { stopka.style.bottom = '20px' }
}
else
{
	window.onload = function() { autocomp(); }
}


