// preload delle immagini di menu
path = "template/graph/";

a1=new Image()
a1.src=path+"MENU_01.JPG"
a2=new Image()
a2.src=path+"MENU_05.JPG"

b1=new Image()
b1.src=path+"MENU_02.JPG"
b2=new Image()
b2.src=path+"MENU_06.JPG"

c1=new Image()
c1.src=path+"MENU_03.JPG"
c2=new Image()
c2.src=path+"MENU_07.JPG"

d1=new Image()
d1.src=path+"MENU_04.JPG"
d2=new Image()
d2.src=path+"MENU_08.JPG"

// funzione filtro per le immagini del menu
function filter(imgName,imgSrc){
  if (document.images) {
    document.images[imgName].src=eval(imgSrc+".src");
  }
}


// Funzioni popup
function openWin(img) {
  image1 = new Image();
  image1.src = (img);
  w = image1.width+50;
  h = image1.height+70;
  file = "view_photo.php?file="+img;
  string = "scrollbars=no,resizable=yes,width="+w+",height="+h+",status=no,location=no,toolbar=no";
  window.open(file, '', string);
}

function mailPop() {
    string="scrollbars=no,resizable=no,width=600,height=400,status=no,location=no,toolbar=no";
    window.open('mail.php', '', string);
}

function mp3Pop(file) {
    mp3_file = 'mp3_player.php?file='+file;
    string="scrollbars=no,resizable=yes,width=150,height=100,status=no,location=no,toolbar=no";
    window.open(mp3_file, '', string);
}