var fDesc=new Array(); fDesc[0] = "I have been outside India for quite sometime now, but still I always love to read Indian News! There is nothing like it! Even more enjoyable is reading the epaper.. Times Of India used to provide it for free but now you have to pay to get the full paper. So I decided to switch to Hindustan Times. The epaper site of HT is good, but quite buggy at times. Some times it just stops responding or even worse spits out an SQL error! Luckily it provides a pdf version, but you have to go through their painful and extremely buggy registration process! Even after that you just get to download the pdf of a single page at a time! LAME!!!!

After fiddling a little with the site, I figured out tht the pdfs actually are jst static objects, located on their server and can be retrieved via a simple get request. Also, they follow a similar url construction pattern. This was enough information! Got down to work last night, eager to utilize my Java skills and the recently mastered Java Concurrent API !! The result? A GUI program which retrieves all the pdfs and merges them into a single pdf, using PDFBox :D .. It doesnot end there. This program currently supports two languages (Hindi and English) and 4 cities per language! Plus you can get archived papers also."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }