//if (window.name!='content' && window.name!='booker_' && !((self.innerHeight == 0) && (self.innerWidth == 0)))
if (self.parent.frames.length == 0)
{
  var ua= navigator.userAgent;
  IE5_5= (ua.indexOf("MSIE 5.5") > 0);
  IE5_0= (ua.indexOf("MSIE 5.0") > 0);
  
  if (IE5_5 || IE5_0)
  {
    splitStr = String(self.location)
    splitArray = splitStr.split('/')
    pathStr = splitArray[splitArray.length - 2] + '/' + splitArray[splitArray.length - 1]
    top.location.replace('index.htm?' +  pathStr + '~mainFrame');
  }
  else
  {
    top.location.replace('index.htm?' +  self.location.pathname + '~mainFrame');
  }
}