function popUp(file, w, h){
	var prop = "width=" + w + ", height=" + h + ", top=100, left=100"; // Altre proprietà... eccetto width ed height!
	window.open(file, null, prop);
}