scrollStep=1
timerLeft=""
timerRight=""

function toLeft(id){
  document.getElementById(id).scrollLeft=0
}

function scrollDivLeft(id){
  clearTimeout(timerRight) 
  document.getElementById(id).scrollTop+=scrollStep
  timerRight=setTimeout("scrollDivLeft('"+id+"')",10)
}

function scrollDivRight(id){
  clearTimeout(timerLeft)
  document.getElementById(id).scrollTop-=scrollStep
  timerLeft=setTimeout("scrollDivRight('"+id+"')",10)
}

function toRight(id){
  document.getElementById(id).scrollLeft=document.getElementById(id).scrollWidth
}

function stopMe(){
  clearTimeout(timerRight) 
  clearTimeout(timerLeft)
}


function apriDiv() {
document.getElementById("servizi").style.visibility="visible"
}

function chiudiDiv() {
document.getElementById("servizi").style.visibility="hidden"
}

function apriPopUp(nomepage, altezza,larghezza) { 
myUrl = "popup.aspx?id=" + nomepage;
W =screen.width/2 // altezza;
H =screen.height/2 //larghezza;
LeftPosition = 0 //(screen.width) ? (screen.width-W)/2 : 0;
TopPosition = 0 //(screen.height) ? (screen.height-H)/2 : 0;

H = altezza + 45
W = larghezza + 45

msg=open(myUrl,'','toolbar=no,directories=no,menubar=no,width=' + W + ',height=' + H + ',resizable=yes,scrollbars=yes,top=' + TopPosition + ',left=' + LeftPosition ); 
}


function apriPaintingArt() { 
myUrl ="PopUpPaintingArt.aspx";
W =567
H =425
LeftPosition =0; //(screen.width) ? (screen.width-W)/2 : 0;
TopPosition =0; // (screen.height) ? (screen.height-H)/2 : 0; 
msg=open(myUrl,'','toolbar=no,directories=no,menubar=no,width=' + W + ',height=' + H + ',resizable=yes,scrollbars=yes,top=' + TopPosition + ',left=' + LeftPosition ); 
//msg=open(myUrl,'','toolbar=no,directories=no,menubar=no,resizable=yes,scrollbars=yes,top=' + TopPosition + ',left=' + LeftPosition ); 
}


function apriPopUpAziende(nomepage, altezza,larghezza) { 
myUrl = "popup.aspx?id=" + nomepage;
LeftPosition = 0 //(screen.width) ? (screen.width-W)/2 : 0;
TopPosition = 0 //(screen.height) ? (screen.height-H)/2 : 0;

H = altezza + 45
W = larghezza + 45

msg=open(myUrl,'','toolbar=no,directories=no,menubar=no,width=' + W + ',height=' + H + ',resizable=yes,scrollbars=yes,top=' + TopPosition + ',left=' + LeftPosition ); 
}


function apriNews(idNews) { 
myUrl = "stampaNews.aspx?idNews="+idNews;
LeftPosition = 0 //(screen.width) ? (screen.width-W)/2 : 0;
TopPosition = 0 //(screen.height) ? (screen.height-H)/2 : 0;
msg=open(myUrl,'','toolbar=no,directories=no,menubar=no,width=350,height=350,resizable=yes,scrollbars=yes,top=' + TopPosition + ',left=' + LeftPosition ); 
}



function apriGuida() { 
myUrl = "guida.aspx";
LeftPosition = 0 //(screen.width) ? (screen.width-W)/2 : 0;
TopPosition = 0 //(screen.height) ? (screen.height-H)/2 : 0;
msg=open(myUrl,'','toolbar=no,directories=no,menubar=no,width=800,height=600,resizable=yes,scrollbars=yes,top=' + TopPosition + ',left=' + LeftPosition ); 
}

function apriPrev() { 
myUrl = "preventivo.aspx";
LeftPosition = 0 //(screen.width) ? (screen.width-W)/2 : 0;
TopPosition = 0 //(screen.height) ? (screen.height-H)/2 : 0;
msg=open(myUrl,'','toolbar=no,directories=no,menubar=no,width=800,height=600,resizable=yes,scrollbars=yes,top=' + TopPosition + ',left=' + LeftPosition ); 
}
//document.oncontextmenu=function(){return false;} 

