function linksMenu(selection)
{
	var url = selection.options[selection.selectedIndex].value;
	if (url == "false") return false;
	window.parent.location.href = url;
}

