var w=(screen.availWidth - 10); var h=(screen.availHeight - 25)
function fullscreen(theURL,winName) {
	window.open(theURL,winName, "width="+w+",height="+h+",top=0,left=0");
}
function popup(indirizzo,nome,larghezza,altezza) {
	window.open(indirizzo,nome,"location=no,status=yes,resizable=yes,scrollbars=yes,width="+larghezza+",height="+altezza+",top="+(h-altezza)/2+",left="+(w-larghezza)/2);
}
