//News now function for pop up window in news from the web links
function err() {return true;}
window.onerror=err;
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
browserVendor = browserName.substring(0,9);

function wopen(url) {
  if(browserVendor=='Microsoft' && browserVer < 4) {
return true;}
  window.open(url,'_blank','toolbar=1,location=1,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,width=640,height=400');   return false;
}

