﻿window.resizeTo(800,window.screen.availHeight);
window.moveTo(window.screen.availWidth/2-400,0);

// Funzione che cambia lo sfondo alle tabelle HTML

function home(){
document.getElementById('BKG').className='bkghome';
}

function curriculum(){
document.getElementById('BKG').className='bkgcurriculum';
}

function gallery(){
document.getElementById('BKG').className='bkg_gal';
}

function gallery_eng(){
document.getElementById('BKG').className='bkg_gal_eng';
}

function work(){
document.getElementById('BKG').className='bkg_work';
}

function work_eng(){
document.getElementById('BKG').className='bkg_work_eng';
}

function contatti(){
document.getElementById('BKG').className='bkgcont';
}

function contatti_eng(){
document.getElementById('BKG').className='bkgcont_eng';
}


function reviews(){
document.getElementById('BKG').className='bkg_reviews';
}

function reviews_eng(){
document.getElementById('BKG').className='bkg_reviews_eng';
}

function lin(){
document.getElementById('BKG').className='bkg_link';
}

function show(){
document.getElementById('BKG').className='bkg_show';
}

function show_eng(){
document.getElementById('BKG').className='bkg_show_eng';
}

// Funzione che apre le immagini

function attiva(){
document.getElementById('IMG').style.visibility='visible';
}

function apri(URL){
document.getElementById('IMG').style.visibility='visible';
document.foto.src=URL;
}