function DoClientSideRedirection(webPage)
{
  if (webPage.indexOf('.aspx') == -1)
    window.location.href = 'Splash.aspx?p=' + webPage;
  else
    window.location.href = webPage;
  
  return false;
}

