/* Javascript per le Action sul Form */

function Action(form) {
	
	var xaction = '';
	var obj;
	
	obj = document.getElementById('cmsForm');
	
	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 */
	obj.method = "post";
	obj.action = xaction;
	obj.submit();
	
}
