// ================
// Common functions
// ================
//
// stopError()
// openWindow(link)
  

function stopError(){return true};
    window.onerror=stopError;
  


function openWindow (link)  {
    newWindow = window.open(link,'newWin',
      'width=620,height=400,screenx=0,left=0,screeny=0,top=0,menubar=1,status=1,resizable=1,scrollbars=1');
    newWindow.focus();
}

