﻿//-----------------------------------------------------------------------------
// Topic Scripts
//
// Copyright 2005-2010 - Xcential Group LLC.
//
//-----------------------------------------------------------------------------

function doGoto(event, location)
{

   try
   {
      window.location = location;
   }
   catch (error)
   {
      XApp.logEvent(XApp.EVENT_ERROR, error);
      XMsg.alert(error);
   }

}

//--------------------------------------------------------------------------

function doInit(event)
{

   try
   {
      var hiddenShareThis = document.getElementById("hiddenShareThis");
      var shareThis = document.getElementById("shareThis");
      if (hiddenShareThis && shareThis)
         shareThis.innerHTML = hiddenShareThis.innerHTML;
   }
   catch (error)
   {
      XApp.logEvent(XApp.EVENT_ERROR, error);
      XMsg.alert(error);
   }

}

//--------------------------------------------------------------------------


