 function getImage() {
               
		r = Math.floor(Math.random()*numberofbooks);
                selection = books[r];
                var data = selection.split("~");
                var author = data[1];
     			var title = data[2];
                var img = data[3];
                var address = data[4];
                var fulladdress = "<h6 align='center'>&nbsp;</h6><h6 align='center' style='margin-top: 0; margin-bottom: 0'><font face='Arial'>" + author + "</font></h6><p align='center' style='margin-top: 0; margin-bottom: 0'><a href='" + address + "'><img border='0' src='" + img + "' width='99' height='132'></a></p><h6 align='center' style='margin-top: 0; margin-bottom: 0'><font face='Arial'>" + title + "</font></h6>";
                //var fulladdress = "<h6 align='center'>&nbsp;</h6><h6 align='center' style='margin-top: 0; margin-bottom: 0'><font face='Arial'>" + author + "</font></h6><p align='center' style='margin-top: 0; margin-bottom: 0'><a href='" + address + "'><img border='0' src='" + img + "' width='99' height='132'></a></p><h6 align='center' style='margin-top: 0; margin-bottom: 0'><font face='Arial'>" + title + "</font></h6>";
                return fulladdress;
                //return title +" "+ img +" "+ address;
         }
