// JavaScript Document
<!--
function disableRightClick(e)
{
  var message = "Powered By\n .::Dana::.";
  
  if(!document.rightClickDisabled) // initialize
  {
    if(document.layers) 
    {
      document.captureEvents(Event.MOUSEDOWN);
      document.onmousedown = disableRightClick;
    }
    else document.oncontextmenu = disableRightClick;
    return document.rightClickDisabled = true;
  }
  if(document.layers || (document.getElementById && !document.all))
  {
    if (e.which==2||e.which==3)
    {
      alert(message);
      return false;
    }
  }
  else
  {
    alert(message);
    return false;
  }
}

// LAYER
var totalLayersInLoop=6;
var layerNumShowing=1;
	
function init(){
	if (navigator.appName == "Netscape") {	
		layerStyleRef="layer.";		
		layerRef="document.layers";		
		styleSwitch="";	
	}else{	
		layerStyleRef="layer.style.";		
		layerRef="document.all";		
		styleSwitch=".style";	
	}
}
function showLayerNumber(number){
	var layerNumToShow=number;
	hideLayer(eval('"layer' + layerNumShowing+'"'));
	showLayer(eval('"layer' + layerNumToShow+'"'));
	layerNumShowing=layerNumToShow;	 	
}
function showLayer(layerName){
	eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="visible"'); 	
}
function hideLayer(layerName){
	eval(layerRef+'["'+layerName+'"]'+styleSwitch+'.visibility="hidden"'); 	
}// FINE LAYER

//POPUP
function opensmilies(pag){
	window.open(pag,'','height=450,width=170,left=0,top=0,scrollbars');
}
function openpopup(idblog){
	window.open('comments/gocce.php?action=wiew&idblog='+idblog,'','height=400,width=350,scrollbars');
}
function openfotoW(pag){
	window.open(pag,'','height=410,width=486,left=0,top=0');
}
function openfotoH(pag){
	window.open(pag,'','height=538,width=358,left=0,top=0');
}
function openarchivio(){
	window.open('view.php?page=2','','height=400,width=220,scrollbars');
}
//STATISTICHE
function linkstats(){
	location.href = "stats/statistics.php";
}
// -->