function checkSubmit(item)
{
	if (item.name == "tickets")
	{
		document.form1.action = "event_ticket.php";
		document.form1.submit();
	}
	else if (item.name == "accommodation")
	{
		document.form1.action = "event_accommodation.php";
		document.form1.submit();
	}
	else if (item.name == "products")
	{
		document.form1.action = "event_merchandise.php";
		document.form1.submit();
	}
}
