//********* popup funkcija - natisni **********//
var okno = null;
var okno2 = null;
function natisni(doc, w, h)
{
  	if (w == null) w = 470;
  	if (h == null) h = 550;
	if (okno==null || okno.closed) {
		okno=window.open(doc,"natisni",'toolbar=no,width='+ w +',height='+ h +',resizable=yes,scrollbars=yes,directories=no,status=no,menubar=no,location=no');
		okno.creator = self;      
	}
	else {
		okno.location = doc;
		okno.focus();
	}
	
}