// JavaScript Document

function showEvent( year, id )
{
	var path = "salespast.php?year=" + year;
	if (id != null)
	{
		path += "&id=" + id
	}
	window.location = path;
}
