function MM_jumpMenu(targ, selObj, restore){ //v3.0
	var pagina = "aziende.php";
	eval(targ+".location='"+pagina+selObj.options[selObj.selectedIndex].value+"'");
	if (restore) selObj.selectedIndex=0;
}

function slideshow_DoFSCommand(command, args) {
	var slideshowObj = isInternetExplorer ? document.all.slideshow : document.slideshow;

	if(command == 'openWindow'){
		window.location = args;
	}
	
	if(command == 'popupWindow'){
		var qs = args.split('&');			// split the arguments
		var w = qs[1].split('=')[1];			// width
		var h = (1 * qs[2].split('=')[1]) + 19;		// height, I add 19 pixels to the height for the menu bar

		// modify this line if you have another template displaying your big view

		// qs[0]: big image src
		// qs[1]: big image width
		// qs[2]: big image height

		cmswin=window.open("big.cfm?lan=1&" + args,"cmswin","width="+w+",height="+h+",scrollbars=no,top=200,left=300,resizable=no");

		window.cmswin.focus();
	}
}

