//funzione rollover pulsanti


function getonme() {


el = event.srcElement ;


if (el.getAttribute("litUp1") != null) {


el.className = "onme1" ;


}


if (el.getAttribute("litUp2") != null) {


el.className = "offme1" ;


}


}





function getoffme() {


el = event.srcElement ;


if (el.getAttribute("litUp1") != null) {


el.className = "offme1";


}


if (el.getAttribute("litUp2") != null) {


el.className = "onme1";


}


}


document.onmouseover = getonme ;


document.onmouseout = getoffme ;








//popup di immagini


var popW;


function openpop(page,larga,alta)


{


var vax = (screen.availwidth/2)-(larga/2);


var vay = (screen.availheight/2)-(alta/2);





popW = window.open('','pop','width='+larga+',height='+alta+',status=no,menubar=no,resizable=no,scrollbars=no');





      popW.document.write("<html>\n");


      popW.document.write(" <head>\n");


      popW.document.write("  <title>Zoom</title>\n");


      popW.document.write(" </head>\n");


      popW.document.write("<body leftmargin=50 topmargin=50 marginwidth=50 marginheight=50>\n");

	

	popW.document.write("<center>\n");


      popW.document.write("<a href='javascript:self.close();'><img src="+page+" border=0></a>\n");


      popW.document.write("</body>\n");


      popW.document.write("</html>");








popW.moveTo(vax,vay);


popW.focus();


}