// this function will write additional query parameters to a cookie
// before rendering the requested page.
// the primary benefit is to allow the "spiders" to index the
// site without any unnecessary query parameters in the link.
function Go(obj, lnk)
{
  document.cookie="Params=Data=" + lnk.replace(/&/, '|') + ";path=/;domain=.levenger.com;";
} // Go
