<!--

window.defaultStatus=":DWEB CMS 1.0"
window.onload=function(){				
	if(document.all&&document.getElementById){
		navRoot = document.getElementById("menu");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI"){
				node.onmouseover=function(){this.className+=" over";}
				node.onmouseout=function(){this.className=this.className.replace(" over", "");}
			}
		}
	}
}
//****************
//* Finestra popup *
//****************
function popup(link,larghezza,altezza,nome){
	window.open(link,nome,"toolbar=no,scrollbars=yes,directories=no,menubar=no,location=no,titlebar=no,width="+larghezza+",height="+altezza+",resizable=no,left=30,top=30");
	return false;
}

//**************************
//*  Disabilita tasto DX   *
//**************************
function right(e){
	if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))
	{
		return false;
	}	
	else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3))
	{
		alert("Spiacenti, il tasto destro del mouse e' disabilitato");
		return false;
	}
	return true;
}
/*
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
*/
//******************
//*         Preferiti           *
//******************

function preferiti(){
	var indirizzo="http://www.piscinabonadies.com"
	var titolo="Piscina Rivoli"
	var imgFav= new Image();
  imgFav.src="/public/template/favicon.ico";
	if (document.all)
	window.external.AddFavorite(indirizzo,titolo);
}

//***************************
//*    Script per il MENU   *
//***************************
function Toggle(item){
   obj=document.getElementById(item);
   visible=(obj.style.display!="none")
   
   if (visible){
     obj.style.display="none";
   } 
   else{
      obj.style.display="block";
   }
}

function Highlighter(current){
	Collapse();
	Toggle(current);
}	

