function addToList(listCombo, productID)
{
	if(listCombo.options[listCombo.selectedIndex].value == -1)
		return;

	if(listCombo.options[listCombo.selectedIndex].text == "Create new list")
		document.location.href = "/lists/createList.asp?productID=" + productID;
	else
		document.location.href = "/lists/listDetail.asp?listID=" + listCombo.options[listCombo.selectedIndex].value + "&productID=" + productID;
}