function popup(url,ime,podatki)
		{
		 window.open(url,ime,podatki);
		}
		
function potrditev_brisanja()
		{
		 if (confirm("Želite odstraniti zapis?")) return true;	else return false;
		}


function natisni_clanek()
{
	if(!document.getElementById("vsebina")) return;

	var con = document.getElementById("vsebina").innerHTML;

	nat = window.open ("", "natisni","menubar=1,resizable=1,scrollbars=1,width=625,height=480");

	nat.document.write('<html><head><title>Natisni - ' + document.title + '</title><meta http-equiv="Content-Type" content="text/html; charset=windows-1250" /><link href="/css/tiskanje.css" rel="stylesheet" type="text/css" /></head><body style="padding: 9px;">');
	nat.document.write(con);
	nat.document.write("<p>Spletni naslov: " + location.href + "</p></body></html>");  

}
