// ************************************ 
// DIV                                  
// ************************************ 
var destinationMenuId  = "destination_menu";
function showDestinations( theTag, courseName ) {
	var divObject = document.getElementById( destinationMenuId );

	divObject.style.display  = 'block';
}

function hideDestinations() {
    document.getElementById( destinationMenuId ).style.display  = 'none';
}
