function goAuthor()
{
if (document.forms[0].elements[0].selectedIndex==0)
	alert ("Devi selezionare un ARTISTA valido!");
else
	{	
	window.location.href='opere.php?IDartista=' + document.forms[0].elements[0][document.forms[0].elements[0].selectedIndex].value;
	}
}


