/*
	  $Author: michael $
	    $Date: 2009/10/03 18:19:37 $
	$Revision: 1.2 $
	  $Source: /pub/cvs/Volunteer/Missouri_Master_Naturalist/Great_Rivers/Site/WebContent/app/webroot/scripts/utility.js,v $
	  Subject: General purpose routines.
*/

function decode(codes) {
	
	var string = ''; 
	for (var index = 0; index < codes.length; index++)
		string += String.fromCharCode(codes[index]);
	
	return string;
	
}