// JavaScript Document
 function viewInfor(id){	
  var width = 600;
  var height = 600;
  var left = (screen.width-width)/2//160;
  var top = (screen.height-height)/2;  
  url="newsContent.asp?id="+id;
  window.open(url,'','scrollbars=1,resizable=yes,left='+left+',top='+top+',width='+width+',height='+height);	
 }
