function viewthestory()
{var h;
 var name;
 var newWindow;
 var quality;
 var url;
 var w;
 w = screen.width;
 h = screen.height;
 if (w > 1400)
   {quality = 'high';}
 else
   {quality = 'normal';};
 url = 'http://www.viewthestory.com/viewer/?c=1029&quality=' + quality;
 name = 'Booklet';
 bits = 'height=' + h + ',width=' + w + ',toolbar=no,scrollbars=no,resizable=yes,status=no,copyhistory=no,location=no,menubar=no';
 newWindow = window.open(url, name, bits);
// newWindow.moveTo(0,0);  // Produces access denied error in Internet Explorer
 newWindow.focus();
}