function http_GoBack()
{
  history.back();
}

/*---------------------------------------------------------*/

function http_GoFwd()
{
  history.forward();
}

/*---------------------------------------------------------*/

function http_GetPageName( sURL )
{
  sURL = s_Init(sURL, "");
  if ( sURL == "" ) { sURL = location.pathname;}
  sURL = s_GetToken (sSTR_FROMRIGHT + sURL, "/");
  return sURL;
}

/*---------------------------------------------------------*/

function http_LocationShow()
{
//  var sSepar = "\r\n";
  var sSepar = "<br>";
  var sStr = 
  "location.hash = " + location.hash + sSepar +
  "location.hostname = " + location.hostname + sSepar +
  "location.href = " + location.href + sSepar +
  "location.pathname = " + location.pathname + sSepar +
  "location.port = " + location.port + sSepar +
  "location.protocol = " + location.protocol + sSepar +
  "location.search = " + location.search + sSepar +
  "document.domain = " + document.domain + sSepar +
  "http_GetCurrentPageName = " + http_GetPageName();
  
  document.write(sStr);
}


