// Inizio funzione per la data italiano
function mettiData(){

var mydate=new Date()
var year=mydate.getYear()
if (year < 1000)
year+=1900
var day=mydate.getDay()
var month=mydate.getMonth()
var daym=mydate.getDate()
if (daym<10)
daym="0"+daym
var dayarray=new Array("Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato")
var montharray=new Array("Gennaio","Febbraio","Marzo","Aprile","Maggio","Giugno","Luglio","Agosto","Settembre","Ottobre","Novembre","Dicembre")
document.write(""+dayarray[day]+", "+daym+" "+montharray[month]+" "+year+"")
}

// Fine funzione per la data italiano


<!-- Inizio script per finestra centrata -->

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',noresizable'
win = window.open(mypage,myname,settings)
}

<!-- Fine script per finestra centrata -->

// Inizio script -link description -

var linktext=new Array()
linktext[0]="Dialoghiamo in continuo con i nostri clienti e, con loro, individuiamo le migliori soluzioni per le loro esigenze.<br><br>We converse in continuous with our customers and, with them, we identify the best solutions for their requirements.<br><br><br>- <a href=\"http://www.axprofessional.com\" target=\"_blanck\">AX Professional</a><br><br>- <a href=\"http://www.actecno.it/\" target=\"_blanck\">AC Tecnosoftware</a><br><br>- <a href=\"http://www.cantuna.it/\" target=\"_blanck\">Cantuna Cut</a>"
linktext[1]="AX PROFESSIONAL<br><br><br>Tecnologia all'avanguardia<br><br>Advanced Tecnology"
linktext[2]="AC TECNOSOFTWARE<br><br><br>Il software creato per te<br>... con passione<br><br>The software created for you<br>... with passion"
linktext[3]="CANTUNA CUT<br><br><br>Taglio e marcatura<br>con tecnologia laser<br><br>Cutting and marking<br> with laser tecnology"



var ns6=document.getElementById&&!document.all
var ie=document.all

function show_text(thetext, whichdiv){
if (ie) eval("document.all."+whichdiv).innerHTML=linktext[thetext]
else if (ns6) document.getElementById(whichdiv).innerHTML=linktext[thetext]
}

function resetit(whichdiv){
if (ie) eval("document.all."+whichdiv).innerHTML=' ' 
else if (ns6) document.getElementById(whichdiv).innerHTML=' '
}
// Inizio script -link description


