// ----------------------------------------------------------------------------
// FUNCTION: 		Redirect
// DESCRIPTION:		Redirects to another URL
// ARGUMENTS: 		string sURL - the URL of the page to redirect to
// RETURNS: 		Nothing
// ----------------------------------------------------------------------------
function Redirect(sURL)
{	if(window.location.replace){window.location.replace(sURL);}
	else{window.location = sURL;}
}

