//teaser.js
function CyReadBook(url)
{
  var winW = screen.width, winH = screen.height;
  var mwin = window.open(url,
  '',
//  'status=yes,top=0,left=0,width=' + winW  + ',height=' + winH + ',fullscreen=yes,toolbar=no,menubar=no,location=no,scollbars=yes,resizable=yes');
  'fullscreen=yes,resizable=yes');
  if(mwin)
    mwin.focus();
}