///////////////////////////////////////
//   FORCE FRAMES IN CHILD WINDOWS   //
///////////////////////////////////////
function errorHandler(eMsg, eUrl, eLine) {
  var eText = eMsg + ' ' + eUrl + ' @ line ' + eLine;
  if (eMsg.indexOf('enied') < 0) {
    if (window.confirm(eText + '\nDo you want to debug?'))
      debugger;
  }
//   else if (top.g_resizing == true) {
//     top.chkDsply();
//   }
  return true;
}
window.onerror = errorHandler;
popWhat = '';
if ((top.window.frames == null) || (top != self.parent.parent) || (top == self)) {
    var startPage = 'index.html?' + escape(top.location.href.substring(top.location.href.lastIndexOf('/')+1));
    top.location.replace(startPage);
}
else {
  if (window.name == 'showPage') {
    top.initPage(window.location);
  }
}

