<!--
function popupPdf(pageURL) {
  if (window.innerWidth <= 640 || document.body.clientWidth <= 640)
    window.location = pageURL;
  else if (window.innerWidth <= 800 || document.body.clientWidth <= 800)
    window.open(pageURL,'',config='left=0,top=0,menubar,resizable,scrollbars,status');
  else
    window.open(pageURL,'',config='width=800,height=600,left=0,top=0,menubar,resizable,scrollbars,status');
}
//-->

