	// Copyright 2004 Zerve, Inc.
	//	
	// $Id: selectDestination.js,v 1.4 2008/08/05 18:58:36 cabernet Exp $
	//
	// Author: T. Collins
	//
	// STATUS: %
	//  - TODO:// comments need to be removed from javascript
	//
	// Used to change the window location based on the value of the select box
	
	function selectDestination( form_element, destination_url ) {
		destination_id = form_element.value;
		if( destination_id == "" ) {
			return true;
		}
	    destination = destination_url + destination_id;
		window.location = destination;
	    return true;
	}	
