function QuickLink(box)
{
	if (box.selectedIndex > 0)
		window.location.href = box.options[box.selectedIndex].value;
}

function NewQuickLink(box)
{
	if (box.selectedIndex > 0)
		window.open(box.options[box.selectedIndex].value, '', '');
}