/* news.js */



function popWin(url){
  var w = 550;
  var h = 700;
  var x = Math.floor((screen.width-w)/2);
  var y = Math.floor((screen.height-h)/2)-100;
  var set = 'resizable=yes,menubar=no,status=no,toolbar=no,scrollbars=yes,left=' + x + ',top=' + y + ',screenX=' + x + ',screenY=' + y + ',width=' + w + ',height=' + h;
  var pw = window.open(url,'case',set);
  pw.focus();
  return false;
}
