tools = {
  options:{ readerBaseUrl:'/matongev2/standard.aspx'}
  };
  
tools.readBook = function(docID,searchString) {
  winH = screen.height;
  winW = screen.width;
    
  var url = tools.options.readerBaseUrl + '?docID=' + docID;
  if (searchString)
    searchString = url + '&s=' + searchString;

  window.open(url,
  'ComReader',
  'status=yes,top=0,left=0,width=' + (winW-10) + ',height=' + (winH - 80) + ',toolbar=no,menubar=no,location=no,scollbars=yes,resizable=yes');
}