﻿function zoombig(nome, size) {
    var addr = "../../../ViewOriginalFoto.aspx?nome=" + nome + "&size=" + size;
    var win = window.open(addr, "foto", "TOP=0,LEFT=0,SCROLLBARS=yes");
    win.focus();
}

function photos(nome, size) {
    var addr = "ViewOriginalFoto.aspx?nome=" + nome + "&size=" + size;
    var win = window.open(addr, "foto", "TOP=0,LEFT=0,SCROLLBARS=yes");
    win.focus();
}

function privacy() {
    var win = window.open("Privacy.htm", "dialog", "TOP=0,LEFT=0,WIDTH=500px,SCROLLBARS=yes");
    win.focus();
}

function credits() {
    var win = window.open("Credits.htm", "dialog", "TOP=0,LEFT=0,WIDTH=450px,HEIGHT=200px,SCROLLBARS=no");
    win.focus();
}

// funizione per il ridimensionamento dei div nella pagina del dettaglio
// relativa all'altezza dell'immagine leftbox
function toggleDiv()
{
    if ($get('divbox1')!=null)
        $get('divbox1').style.height = String($get("ctl00_ContentPlaceHolder1_imgLeftBox").offsetHeight-65) + "px";
    if ($get('divbox2')!=null)
        $get('divbox2').style.height = String($get("ctl00_ContentPlaceHolder1_imgLeftBox").offsetHeight-65) + "px";        
    if ($get('divbox3')!=null)
        $get('divbox3').style.height = String($get("ctl00_ContentPlaceHolder1_imgLeftBox").offsetHeight-65) + "px";                
}

