/*
	  $Author: Wohlstadter $
	    $Date: 2010-03-29 17:01:06 -0500 (Mon, 29 Mar 2010) $
	$Revision: 92 $
	 $HeadURL: http://svn.xp-dev.com/svn/RiverWest_Volunteer/River_des_Peres/trunk/Site/WebContent/scripts/utility.js $
	  Subject: General purpose routines.
*/

function decode(codes) {
	
	var string = ''; 
	for (var index = 0; index < codes.length; index++)
		string += String.fromCharCode(codes[index]);
	
	return string;
	
}


function popLink(url, title) {
	
	var winEvent = window.open(url, title);
	
	winEvent.focus();
	
}


function popPage(url, title) {
	
	var winEvent = window.open(url, title, 'resizable=yes,menubar=no,scrollbars=yes,height=400,width=600');
	
	winEvent.focus();
	
}


function redirectPage(url, title) {
	
	var winEvent = window.open(url, title);
	
	winEvent.focus();
	
}