<!-- Begin hiding

function stopError() {//kills js errors after squishing banner
return true;
}
window.onerror = stopError;

//standard popup window 
function openpopup(url) {
  popUpWin = window.open(url, 
  'popUpWin','status=yes,scrollbars=yes,resizable=yes,width=500,height=147');
  if (popUpWin.focus) popUpWin.focus();
}

//  End -->