/**
* function redirect, public access is assumed
* @param jax is the url to which to redirect the page to.
* @uses it is use to redirect the user from the static site to ajax site.
* @return true
**/
function redirect(jax)
{
window.location.href=jax;
return true;
}