//Apertura riquadro backoffice

function apribackoffice(link) {
var h = 550;
var w = 750;
winprop = 'height='+h+',width='+w+',scrollbars=yes, status=no, toolbar=no, hotkeys=no;'
//winprop = ''
window.open(link, 'backoffice', winprop);
}


function aprischeda(link) {
var h = 400;
var w = 350;
//winprop = 'height='+h+',width='+w+',scrollbars=no, status=yes'
winprop = 'scrollbars=yes, status=yes,' + 'height='+h+',width='+w
window.open(link, 'scheda', winprop);
}

function chiudi() {
window.close();
}


