// JavaScript Document
function dwComboRedirect(id){
	var url;
	url=document.getElementById(id).options[document.getElementById(id).options.selectedIndex].value;
	
	if (url == "0_0" || url =="TBD") alert ("Please choose an item in the drop down box"); else document.location.href = url;
}