/* Javascript per le Action sul Form */

function Action(form) {
	
	alert ("test");
	xaction = "";
	
	switch(form)
	{
		case "eventi":
			xaction = "index.php?eventidtt=on"
			break
		
		case "cerca":
			xaction = "index.php?cerca=on"
			break
		
		case "xcerca":
			xaction = "index.php?cerca=onp"
			break
				
		default:
			xaction = "index.php"
			break
	}

	/* submit sul form */
	document.cmsForm.method = "post";
	document.cmsForm.action = xaction;
	document.cmsForm.submit();
	
}

