urls = new Array; dates = new Array; albumtitles = new Array; imagelinks = new Array; imagetitles = new Array; urls['ts'] = "http://ts.earthcammobile.com"; imagelinks['ts'] = ""; dates['ts'] = "Jan 12, 2010 01:39 PM"; albumtitles['ts'] = "TIMES SQUARE, NYC"; imagetitles['ts'] = "Fred & Anita KISS 9.6.9"; urls['pets'] = "http://pets.earthcammobile.com"; imagelinks['pets'] = ""; dates['pets'] = "Dec 13, 2006 12:13 AM"; albumtitles['pets'] = "Animal Companions"; imagetitles['pets'] = "Charlie Brown"; urls['london'] = "http://london.earthcammobile.com"; imagelinks['london'] = ""; dates['london'] = "Jan 18, 2009 02:11 AM"; albumtitles['london'] = "LONDON"; imagetitles['london'] = "Viagra: save more buying more!"; function showLinkedImage(name) { var i = imagelinks[name]; document.write(i); document.write('
'); document.write('Powered by EarthCam Mobile'); } function showAlbumTitle(name) { var at = albumtitles[name]; document.write(at); } function showAlbumUrl(name) { var u = urls[name]; document.write(u); } function showDate(name) { var d = dates[name]; document.write(d); } function showImageTitle(name) { var i = imagetitles[name]; document.write(i); }