/**
 * ByngUI.Send Handler
 * 
 * Provides methods to redirect the user to another screen the framework 
 * 
 * @copyright Byng Systems LLP
 * 
 * @author Ollie Maitland
 */		
var ByngUISend = new Class(
{		
	/**
	 * Redirect to a page
	 * 
	 */
	redirect : function (request) 
	{
		window.location = request.toString();
	}
	
});