var larghezza=screen.width;
var altezza=screen.height;
if (larghezza>=1024) {
	larghezza=1000;
	altezza=730;
}
var nome="popup.htm";
var titolo="LeLibellule";
var x = 0;
var y = 0;
var feat ='resizable=0';
var stringa="width="+larghezza+", height="+altezza+"left=0,top=0,screenX=0,screenY=0,resizable=no";
function popup() {
	window.open(nome, titolo, 'width=' + larghezza + ',height=' + altezza + ',left=' + x + ',screenX=' + x + ',top=' + y + ',screenY=' + y +	',' + feat);
}

