﻿// Funzioni per pop-up foto

function PopUpFoto(img)
{
    foto1 = new Image();
    
    foto1.onload = function()
    {
        stringa = "width=" + (this.width+20) + ",height=" + (this.height+25);
        finestra = window.open(this.src,"",stringa);
        foto1.onload = null;
    }
    
    foto1.src = img;
}


// Funzioni per pop-up PDF

function ApriPDF(NomeFile)
	{
	var NomeFinestra = "PopUpWin";
	var Parametri = "menubar=no,scrollbars=yes,resizable=yes,status=no,location=no,width=360,height=500";
	var wref = window.open("pdfeventi/" + NomeFile + ".pdf", NomeFinestra, Parametri);
	if (wref) wref.focus();
	}



// Funzioni per immagini di roll-over

function SwapImageOff(id,file)
    {
    document.images.namedItem(id).src = file;
    }

function SwapImageOn(id,file)
    {
    document.images.namedItem(id).src = file;
    }
