// apertura finestre
function selectGo2(obj,openWin){
	
	var Ind 	= obj.selectedIndex;
	var Value 	= obj.options[Ind].value;
	
	targetLink = Value.indexOf("http");
	
	if (Value){
		if (targetLink>=0){
			if (openWin == 1 || Value=='http://www.paninigroup.com') {
				newWin=window.open(Value);
			} else {
				document.location.href = Value;
			}
		} else if (targetLink==-1) {
			document.location.href = Value;
		}	
	}
}

