function vediFoto (nome,  id) {
    return ingrandisciFoto (nome, id)
}

function ingrandisciFoto (nome, id) {
    if (pop_up) pop_up.close();
    var pop_up=window.open('foto.asp?nome=' + nome + '&ID=' + id ,'pop_up','resizable=no, menubar=no,toolbar=no,location=no,status=no,scrollbars=no,width=500,height=415,left=220,top=220')
    pop_up.focus();
}

