function doredir(option)
{
	optionString = new String(option);
	
	if (document.modform.selected.value == ""){
		alert('You need to make a selection before you can perform any actions...');
		return false;
	}

	if (optionString.indexOf('del') == 0) {
		
		if ( confirm('Deleting records is permenate... are you sure?') == false ) {
			return false;
		}
		else {
			window.location = "process_action.asp?action=" + option + "&value=" + document.modform.selected.value; 
		}			
	}
	else {
		window.location = "process_action.asp?action=" + option + "&value=" + document.modform.selected.value;
	}
};