//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
/**
 * @name Function: Redirect To Index Frameset
 * @access public
 */
if(top == self)
{
   if(location.href.indexOf("~") == -1)
   { top.location.href = '/Shop/Index.php'; }
   else
   {
      var aUrlLocation = location.href.split('/');
      var sUrl = "";
      
      for(var i=0; i<=3; i++)
      { sUrl += aUrlLocation[i] + '/'; }

      top.location.href = sUrl;
   }
}