var printing = false;

function subMenuOpen(listItem){
	var myMenu = document.getElementById(listItem);
	myMenu.style.display = "block";
	myMenu.style.width = "150px";
	myMenu.style.position = "absolute";
	myMenu.style.leftMargin = "-15px";
	myMenu.style.zIndex = 1;
}

function subMenuClose(listItem){
	var myMenu = document.getElementById(listItem);
	myMenu.style.display = "none";
}

function dimensioneFont(valore)
{
	if(valore!=0){
		var curSize = document.getElementById("container").style.fontSize;
	 	var newSize = parseInt(curSize.substring(0, curSize.indexOf("px")));
	 	newSize += valore;
 		document.getElementById("container").style.fontSize = newSize+"px";
	}else{
  		document.getElementById("container").style.fontSize = "12px";
	}
  
}


function startSearch()
{
 	var strRicerca = document.getElementById("camporic").value;
 	window.location.href = "http://dev.comune.pusiano.co.it/ricerca.php?src="+strRicerca;  
}

function printMe(mioDiv)
{
	var object = document.getElementById(mioDiv);
	var boxWidth = object.offsetWidth + 20 ;
	var boxHeight = object.offsetHeight + 20 ;
	var stile = "top=10, left=10, width="+ boxWidth +", height="+ boxHeight +", status=no, menubar=no, toolbar=no scrollbar=no";

	var title = "Comune di Pusiano";

	newWindow = window.open("", "newWindow", stile);
	newWindow.document.open();
	newWindow.document.write('<html>\n<head>\n<title>'+title+'</title>\n');
	newWindow.document.write('<link rel="stylesheet" type="text/css" href="css/frontEndComune.css" >\n');
	newWindow.document.write('<SCRIPT TYPE="text/javascript" SRC="js/swfobject.js"></SCRIPT><script TYPE="text/javascript">var printing=\'true\'; </script>\n');
	newWindow.document.write('</head>\n');
	newWindow.document.write('<body onload="print();" marginheigth="0" marginwidth="0" topmargin="0" leftmargin="0" scroll="no">');
	newWindow.document.write('\n<div id ="printContainer"  style="font-size: 12px;" >');
	newWindow.document.write('\n'+ object.innerHTML +'\n');
	newWindow.document.write('\n</div>');
	newWindow.document.write('\n</body>\n</html>');
	newWindow.document.close();
	
}

function sendMe(pagina)
{
	
	var link = "sendMe.php?link="+pagina;

	var boxWidth = 420;
	var boxHeight = 400;
	var stile = "top=10, left=10, width="+ boxWidth +", height="+ boxHeight +", status=no, menubar=no, toolbar=no scrollbar=no";
//	var stile = "top=10, left=10, width=400, height=300, status=no, menubar=no, toolbar=no scrollbar=no";
	window.open(link, "ComunediPusiano", stile);
}
