function qa_redirect($pagename="
http://myredirectlink.com", $request, $params=null, $rooturl=null, $neaturls=null, $anchor=null)
/*
Redirect the user's web browser to $request and then we're done - see qa_path() for other parameters
*/
{
header('Location: '.qa_path($pagename, $request, $params, $rooturl, $neaturls, $anchor));
exit;
}
Is this right? I think i am not understanding how to use the function?