// Kontakt forma - popup DIV
x = 30;
y = 40;
function setVisible(obj)
{
	obj = document.getElementById(obj);
	obj.style.visibility = (obj.style.visibility == 'visible') ? 'hidden' : 'visible';
}
function placeIt(obj)
{
	obj = document.getElementById(obj);
	if (document.documentElement)
	{
		theLeft = document.documentElement.scrollLeft;
		theTop = document.documentElement.scrollTop;
	}
	else if (document.body)
	{
		theLeft = document.body.scrollLeft;
		theTop = document.body.scrollTop;
	}
	theLeft += x;
	theTop += y;
	obj.style.left = theLeft + '%' ;
	obj.style.top = theTop + '%' ;
	setTimeout("placeIt('layer1')",500);
}

// IEUpdate
theObjects = document.getElementsByTagName("object");
	for (var i = 0; i < theObjects.length; i++) 
{
	theObjects[i].outerHTML = theObjects[i].outerHTML;
}

function UpozorenjeView()
	{
		alert("UPOZORENJE!!!"+ '\n' + "Ukljucivanjem ove opcije svi posetioci"+ '\n' + "mogu videti sadržaj ovog menija!!")
	}
function UpozorenjeEdit()
	{
		alert("UPOZORENJE!!!"+ '\n' + "Ukljucivanjem ove opcije omogućavate"+ '\n' + "svim posetiocima da menjaju, brišu i dodaju nove sadržaje!!")
	}

function checkedAll (id, checked) 
	{
	var el = document.getElementById(id);
	for (var i = 0; i < el.elements.length; i++) 
		{
	  	el.elements[i].checked = checked;
		}
  }
  
function go()
	{
		var a = window. open('','','scrollbars=yes,width=600,height=500');

//		a.document.open("text/html");
//		a.document.write('<html><head><link rel="stylesheet" href="main.css" /><style type="text/css">#frame{background-image:none;background-color:#FFFFFF;}</style></head><body style="padding-left:20px;background-image:none;background-color:#FFFFFF; font-size:12px; font:times new roman;">');
		a.document.write(document.getElementById('print').innerHTML);
//		a.document.write('</body></html>');
		//a.document.write('<div align-center><input type=button value=Print onclick=window.print();></div></body></html>');
		a.document.close();
		a.print();
	}