function suona(player){
larghezza = 500; 
altezza = 350; 
var x = (screen.width-larghezza)/2; 
var y = (screen.height-altezza)/2; 

window.open(player,"","width=" + larghezza + ",height=" + altezza + ",left=" + x + ",top=" + y, scrollbar="no")
}


function gallery(folder){
larghezza = 600; 
altezza = 420; 
var x = (screen.width-larghezza)/2; 
var y = (screen.height-altezza)/2; 

if (!folder){
		folder = 'mauropagani';
}

window.open("gallery/gallery.php?f="+folder,"","width=" + larghezza + ",height=" + altezza + ",left=" + x + ",top=" + y, scrollbar="no")
}

function audio(){
larghezza = 600; 
altezza = 420; 
var x = (screen.width-larghezza)/2; 
var y = (screen.height-altezza)/2; 

window.open("audio.php?f=","","width=" + larghezza + ",height=" + altezza + ",left=" + x + ",top=" + y, scrollbar="no")
}