function openSelected(id,errormessage){
	var box = document.getElementById(id);
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = destination;
	else alert(errormessage);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}