function open_win (my_path,w,h){
		pop_win = window.open(my_path,'pop_win','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizeable=no,copyhistory=no,width='+w+',height='+h+',marginwidth=0,marginheight=0');
};

function open_punti (my_path){
	largo=480;
	alto=320;
	posh=Math.floor((screen.height-alto)/2); 
	posw=Math.floor((screen.width-largo)/2);
	
	pop_win = window.open(my_path,'pop_win','scrollbars=yes,width='+largo+',height='+alto+',top='+posh+',left='+posw);

};
function open_marketing (my_path){
	largo=780;
	alto=200;
	posh=Math.floor((screen.height-alto)/2); 
	posw=Math.floor((screen.width-largo)/2);
	
	pop_win = window.open(my_path,'pop_win','scrollbars=no,width='+largo+',height='+alto+',top='+posh+',left='+posw);

};
function open_cartina (){
	largo=422;
	alto=320;
	posh=Math.floor((screen.height-alto)/2); 
	posw=Math.floor((screen.width-largo)/2);
	
	pop_win = window.open('pop_cartina.asp','pop_win','scrollbars=no,width='+largo+',height='+alto+',top='+posh+',left='+posw);

};

function open_catalogo (my_path,w,h){
	pop_win = window.open(my_path,'pop_win','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizeable=no,copyhistory=no,width=500,Height=500,marginwidth=0,marginheight=0');
};

 function jumpPage (newLoc) {
	newPage = newLoc.options[newLoc.selectedIndex].value;
	if (newPage == "") {
	alert('seleziona una provincia');
	  }
	if (newPage != "") {
	window.location.href = newPage 
	  }
};