/*
 * =================================================================
 * Gossamer Links - enhanced directory management system
 *
 *   Website  : http://gossamer-threads.com/
 *   Support  : http://gossamer-threads.com/scripts/support/
 *   Revision : $Id: utils.js,v 1.2 2005/03/05 01:29:08 brewt Exp $
 *
 * Copyright (c) 2005 Gossamer Threads Inc.  All Rights Reserved.
 * Redistribution in part or in whole strictly prohibited. Please
 * see LICENSE file for full details.
 * =================================================================
 */

/*
Event Handler
=============
Description:
    A simple cross-browser event handler replacement.
Usage:
    registerEvent(<html_object>, <event>, <handler>);
    unregisterEvent(<html_object>, <event>, <handler>);
Example:
    registerEvent(window, 'onload', myhandler);
Notes:
    html_object is a html object that you wish to register the event on.
    event is a string containing the event you wish to register, eg. 'onload'.
    handler is a function reference for the code you wish to run when the
        event is fired.
*/

function registerEvent(object, event, handler) {
    if (!(object && event && handler))
        return;

    var events = object[event + 'Events'];
    if (!events) {
        object[event + 'Events'] = object[event] ? [object[event], handler] : [handler];
        object[event] = _eventHandler;
    }
    else
        object[event + 'Events'][events.length] = handler;
}

function unregisterEvent(object, event, handler) {
    if (!(object && event && handler))
        return;

    var events = object[event + 'Events'];
    if (!events)
        return;

    for (var i = 0; i < events.length; i++)
        if (object[event + 'Events'][i] == handler)
            return object[event + 'Events'].splice(i, 1);
}

function _eventHandler(event) {
    if (!event) event = window.event;

    var events = this['on' + event.type + 'Events'];
    if (!events)
        return;

    for (var i = 0; i < events.length; i++) {
        this.eventMethod = events[i];
        if (this.eventMethod(event) == false) {
            this.eventMethod = null;
            return false;
        }
        this.eventMethod = null;
    }
}

/*
Check All Checkbox
==================
Description:
    Code to implement a check all checkbox.
Usage:
    checkAllInit(<form_id>, <checkbox_name>, <checkall_id>);
Example:
    registerEvent(window, 'onload', function () { checkAllInit('my_form', 'ID', 'checkall') });
*/

function checkAllInit(form, checkBoxes, checkAllBox) {
    var oForm, oCheckBoxes, oCheckAllBox;
    if (!(form && checkBoxes && checkAllBox &&
        (oForm = document.getElementById(form)) &&
        (oCheckBoxes = oForm.elements[checkBoxes]) &&
        (oCheckAllBox = document.getElementById(checkAllBox))))
        return;

    oCheckAllBox.checkBoxes = oCheckBoxes;
    oCheckAllBox.onclick = _checkAllBoxes;
    registerEvent(oCheckAllBox, 'onclick', _checkAllBoxes);
    for (var i = 0; i < oCheckBoxes.length; i++) {
        oCheckBoxes[i].checkAllBox = oCheckAllBox;
        registerEvent(oCheckBoxes[i], 'onclick', _updateAllBoxes);
    }
}

function _checkAllBoxes() {
    var checkBoxes = this.checkBoxes;
    for (var i = 0; i < checkBoxes.length; i++)
        checkBoxes[i].checked = this.checked;
}

function _updateAllBoxes() {
    var checkBoxes = this.form.elements[this.name];
    var allChecked = true;
    for (var i = 0; i < checkBoxes.length; i++) {
        if (!checkBoxes[i].checked) {
            allChecked = false;
            break;
        }
    }
    this.checkAllBox.checked = allChecked;
}

/*
Hide Objects
============
Description:
    Hide a list of html objects using the display = 'none' style.
Usage:
    hideObjects(<id>[, <id>]*);
Example:
    hideObjects('foo', 'bar', 'baz');
Notes:
    id is the id of the html object you want to hide.
*/

function hideObjects() {
    var args = hideObjects.arguments;
    for (var i = 0; i < args.length; i++) {
        var obj = document.getElementById(args[i]);
        if (obj)
            obj.style.display = 'none';
    }
}

var mycontent = new Array();

mycontent[0]='<a href="http://www.newspapers24.com/australian-newspapers/index.html"><img src="/images/panoramic/australia_01.jpg" alt="Australian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Storey Bridge, Brisbane, Queensland, Australia&nbsp;<I>By: Cyron</I>';
mycontent[1]='<a href="http://www.newspapers24.com/australian-newspapers/index.html"><img src="/images/panoramic/australia_02.jpg" alt="Australian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Lake St. Clair, Tasmania, Australia&nbsp;<I>By: Jörn Brauns</I>';
mycontent[2]='<a href="http://www.newspapers24.com/australian-newspapers/index.html"><img src="/images/panoramic/australia_03.jpg" alt="Australian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Melbourne, Australia&nbsp;<I>By: Diliff</I>';
mycontent[3]='<a href="http://www.newspapers24.com/austria-newspapers/index.html"><img src="/images/panoramic/austria_01.jpg" alt="Austria Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Salzburg, Austria&nbsp;<I>By: Wolfgang Manousek</I>';
mycontent[4]='<a href="http://www.newspapers24.com/austria-newspapers/index.html"><img src="/images/panoramic/austria_02.jpg" alt="Austria Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Salzburg, Austria&nbsp;<I>By: Jeff Wilcox  </I>';
mycontent[5]='<a href="http://www.newspapers24.com/brazil-newspapers/index.html"><img src="/images/panoramic/brazil_01.jpg" alt="Brazil Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Rio de Janeiro, Brazil&nbsp;<I>By: alreadytaken?</I>';
mycontent[6]='<a href="http://www.newspapers24.com/canadian-newspapers/"><img src="/images/panoramic/canada_02.jpg" alt="Canadian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Vancouver, British Columbia, Canada&nbsp;<I>By: sporkist</I>';
mycontent[7]='<a href="http://www.newspapers24.com/canadian-newspapers/"><img src="/images/panoramic/canada_03.jpg" alt="Canadian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Vancouver, British Columbia, Canada&nbsp;<I>By: sporkist</I>';
mycontent[8]='<a href="http://www.newspapers24.com/canadian-newspapers/"><img src="/images/panoramic/canada_05.jpg" alt="Canadian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Vancouver, British Columbia, Canada&nbsp;<I>By: Alan Bruce </I>';
mycontent[9]='<a href="http://www.newspapers24.com/canadian-newspapers/"><img src="/images/panoramic/canada_06.jpg" alt="Canadian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Niagara Falls, Ontario, Canada&nbsp;<I>By: Marcin Klapczynski</I>';
mycontent[10]='<a href="http://www.newspapers24.com/canadian-newspapers/"><img src="/images/panoramic/canada_07.jpg" alt="Canadian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Moraine Lake, Alberta, Canada &nbsp;<I>By: Grant Yiu</I>';
mycontent[11]='<a href="http://www.newspapers24.com/hong-kong-newspapers/index.html"><img src="/images/panoramic/china_01.jpg" alt="Hong Kong Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Hong Kong, China&nbsp;<I>By: Jesse Warren  </I>';
mycontent[12]='<a href="http://www.newspapers24.com/chinese-newspapers/index.html"><img src="/images/panoramic/china_02.jpg" alt="Chinese Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Lianhuashan, China&nbsp;<I>By: Jesse Warren  </I>';
mycontent[13]='<a href="http://www.newspapers24.com/chinese-newspapers/index.html"><img src="/images/panoramic/china_03.jpg" alt="Chinese Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Guangzhou, China&nbsp;<I>By: Jesse Warren  </I>';
mycontent[14]='<a href="http://www.newspapers24.com/hong-kong-newspapers/index.html"><img src="/images/panoramic/china_04.jpg" alt="Hong Kong Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Hong Kong, China&nbsp;<I>By: rpoll</I>';
mycontent[15]='<a href="http://www.newspapers24.com/chinese-newspapers/index.html"><img src="/images/panoramic/china_05.jpg" alt="Chinese Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Shanghai, China&nbsp;<I>By: rpoll</I>';
mycontent[16]='<a href="http://www.newspapers24.com/chinese-newspapers/index.html"><img src="/images/panoramic/china_06.jpg" alt="Chinese Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Shenzhen, China&nbsp;<I>By: Jesse Warren  </I>';
mycontent[17]='<a href="http://www.newspapers24.com/chinese-newspapers/index.html"><img src="/images/panoramic/china_07.jpg" alt="Chinese Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Zhongshan, China&nbsp;<I>By: Jesse Warren  </I>';
mycontent[18]='<a href="http://www.newspapers24.com/hong-kong-newspapers/index.html"><img src="/images/panoramic/china_08.jpg" alt="Hong Kong Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Hong Kong, China&nbsp;<I>By: Jesse Warren  </I>';
mycontent[19]='<a href="http://www.newspapers24.com/costa-rica-newspapers/index.html"><img src="/images/panoramic/costa_rica_01.jpg" alt="Costa Rica Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Jaco Beach, Costa Rica&nbsp;<I>By: Scott Robinson</I>';
mycontent[20]='<a href="http://www.newspapers24.com/costa-rica-newspapers/index.html"><img src="/images/panoramic/costa_rica_02.jpg" alt="Costa Rica Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Costa Rica&nbsp;<I>By: Scott Robinson  </I>';
mycontent[21]='<a href="http://www.newspapers24.com/danish-newspapers/index.html"><img src="/images/panoramic/denmark_01.jpg" alt="Danish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Copenhagen, Denmark&nbsp;<I>By: Stig Nygaard  </I>';
mycontent[22]='<a href="http://www.newspapers24.com/danish-newspapers/index.html"><img src="/images/panoramic/denmark_02.jpg" alt="Danish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Copenhagen, Denmark&nbsp;<I>By: Stig Nygaard  </I>';
mycontent[23]='<a href="http://www.newspapers24.com/finnish-newspapers/index.html"><img src="/images/panoramic/finland_01.jpg" alt="Finnish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Hanko, Finland&nbsp;<I>By: Ilmari Karonen</I>';
mycontent[24]='<a href="http://www.newspapers24.com/french-newspapers/index.html"><img src="/images/panoramic/france_01.jpg" alt="French Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Versailles, France&nbsp;<I>By: Jeff Wilcox  </I>';
mycontent[25]='<a href="http://www.newspapers24.com/french-newspapers/index.html"><img src="/images/panoramic/france_02.jpg" alt="French Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;The bridge over the River Rhône at Avignon, France&nbsp;<I>By: Chimigi</I>';
mycontent[26]='<a href="http://www.newspapers24.com/french-newspapers/index.html"><img src="/images/panoramic/france_03.jpg" alt="French Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Pont du Gard, France&nbsp;<I>By: François Van Der Biest</I>';
mycontent[27]='<a href="http://www.newspapers24.com/french-newspapers/index.html"><img src="/images/panoramic/france_04.jpg" alt="French Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Socoa, Landes, France&nbsp;<I>By: Olivier Bouillaud</I>';
mycontent[28]='<a href="http://www.newspapers24.com/german-newspapers/index.html"><img src="/images/panoramic/germany_03.jpg" alt="German Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Sankt Goarhausen Germany&nbsp;<I>By: Jessica Merz  </I>';
mycontent[29]='<a href="http://www.newspapers24.com/german-newspapers/index.html"><img src="/images/panoramic/germany_04.jpg" alt="German Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Hamburg, Germany&nbsp;<I>By: Go-in</I>';
mycontent[30]='<a href="http://www.newspapers24.com/german-newspapers/index.html"><img src="/images/panoramic/germany_05.jpg" alt="German Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Wartburg Castle, Germany&nbsp;<I>By: Wolfgang Manousek</I>';
mycontent[31]='<a href="http://www.newspapers24.com/german-newspapers/index.html"><img src="/images/panoramic/germany_06.jpg" alt="German Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Weimar, Germany&nbsp;<I>By: Wolfgang Manousek</I>';
mycontent[32]='<a href="http://www.newspapers24.com/german-newspapers/index.html"><img src="/images/panoramic/germany_07.jpg" alt="German Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Hiddensee, Germany&nbsp;<I>By: Arne Schween</I>';
mycontent[33]='<a href="http://www.newspapers24.com/german-newspapers/index.html"><img src="/images/panoramic/germany_08.jpg" alt="German Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Castle Blankenhain near Crimmitschau, Germany&nbsp;<I>By: André Karwath</I>';
mycontent[34]='<a href="http://www.newspapers24.com/german-newspapers/index.html"><img src="/images/panoramic/germany_09.jpg" alt="German Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Anholt Castle,Isselburg, Germany&nbsp;<I>By: Wolfgang Manousek</I>';
mycontent[35]='<a href="http://www.newspapers24.com/german-newspapers/index.html"><img src="/images/panoramic/germany_10.jpg" alt="German Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Heilbronn, Germany&nbsp;<I>By: Klaus Jähne</I>';
mycontent[36]='<a href="http://www.newspapers24.com/german-newspapers/index.html"><img src="/images/panoramic/germany_11.jpg" alt="German Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Cologne, Germany&nbsp;<I>By: Elke Wetzig</I>';
mycontent[37]='<a href="http://www.newspapers24.com/german-newspapers/index.html"><img src="/images/panoramic/germany_12.jpg" alt="German Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Ravensburg, Germany&nbsp;<I>By: Andreas Praefcke</I>';
mycontent[38]='<a href="http://www.newspapers24.com/german-newspapers/index.html"><img src="/images/panoramic/germany_13.jpg" alt="German Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Munich Central Station, Germany&nbsp;<I>By: FloSch</I>';
mycontent[39]='<a href="http://www.newspapers24.com/ghana-newspapers/index.html"><img src="/images/panoramic/ghana_01.jpg" alt="Ghana Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Elmina town, Ghana&nbsp;<I>By: Erik Cleves Kristensen</I>';
mycontent[40]='<a href="http://www.newspapers24.com/greek-newspapers/index.html"><img src="/images/panoramic/greece_01.jpg" alt="Greek Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Athens, Greece&nbsp;<I>By: Sébastien Bertrand  </I>';
mycontent[41]='<a href="http://www.newspapers24.com/irish-newspapers/index.html"><img src="/images/panoramic/ireland_01.jpg" alt="Irish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Dublin riverside, Ireland&nbsp;<I>By: Dave Morris</I>';
mycontent[42]='<a href="http://www.newspapers24.com/irish-newspapers/index.html"><img src="/images/panoramic/ireland_02.jpg" alt="Irish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Dingle peninsula, county Kerry, Ireland &nbsp;<I>By: Steve Ford Elliott</I>';
mycontent[43]='<a href="http://www.newspapers24.com/irish-newspapers/index.html"><img src="/images/panoramic/ireland_03.jpg" alt="Irish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Dingle peninsula, county Kerry, Ireland &nbsp;<I>By: Steve Ford Elliott</I>';
mycontent[44]='<a href="http://www.newspapers24.com/italian-newspapers/index.html"><img src="/images/panoramic/italy_01.jpg" alt="Italian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Rome, Italy&nbsp;<I>By: Wolfgang Manousek</I>';
mycontent[45]='<a href="http://www.newspapers24.com/italian-newspapers/index.html"><img src="/images/panoramic/italy_02.jpg" alt="Italian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Taormina and Etna, Italy&nbsp;<I>By: Elena Kurinki</I>';
mycontent[46]='<a href="http://www.newspapers24.com/italian-newspapers/index.html"><img src="/images/panoramic/italy_04.jpg" alt="Italian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Florence, Italy&nbsp;<I>By: Graeme Maclean </I>';
mycontent[47]='<a href="http://www.newspapers24.com/italian-newspapers/index.html"><img src="/images/panoramic/italy_05.jpg" alt="Italian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Florence, Italy&nbsp;<I>By: Lance Willett </I>';
mycontent[48]='<a href="http://www.newspapers24.com/italian-newspapers/index.html"><img src="/images/panoramic/italy_06.jpg" alt="Italian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Varallo, Italy&nbsp;<I>By: Kogo</I>';
mycontent[49]='<a href="http://www.newspapers24.com/japanese-newspapers/index.html"><img src="/images/panoramic/japan_01.jpg" alt="Japanese Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Kinkakuji, Kyoto, Japan&nbsp;<I>By: Fbjon</I>';
mycontent[50]='<a href="http://www.newspapers24.com/japanese-newspapers/index.html"><img src="/images/panoramic/japan_02.jpg" alt="Japanese Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Port of Kobe, Japan&nbsp;<I>By: Daiju Azuma</I>';
mycontent[51]='<a href="http://www.newspapers24.com/japanese-newspapers/index.html"><img src="/images/panoramic/japan_03.jpg" alt="Japanese Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Sumoto, Japan&nbsp;<I>By: RebelGuys6</I>';
mycontent[52]='<a href="http://www.newspapers24.com/lithuanian-newspapers/index.html"><img src="/images/panoramic/lithuania_01.jpg" alt="Lithuanian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Vilnius, Lithuania&nbsp;<I>By: lostajy</I>';
mycontent[53]='<a href="http://www.newspapers24.com/malta-newspapers/index.html"><img src="/images/panoramic/malta_01.jpg" alt="Malta Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Valetta, Malta&nbsp;<I>By: rpoll</I>';
mycontent[54]='<a href="http://www.newspapers24.com/new-zealand-newspapers/index.html"><img src="/images/panoramic/new_zealand_01.jpg" alt="New Zealand Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Avon River at Victoria Square, Christchurch, New Zealand&nbsp;<I>By: Greg O`Beirne</I>';
mycontent[55]='<a href="http://www.newspapers24.com/new-zealand-newspapers/index.html"><img src="/images/panoramic/new_zealand_02.jpg" alt="New Zealand Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Wellington, New Zealand&nbsp;<I>By: Donovan Govan</I>';
mycontent[56]='<a href="http://www.newspapers24.com/new-zealand-newspapers/index.html"><img src="/images/panoramic/new_zealand_03.jpg" alt="New Zealand Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Mount Cargill, New Zealand&nbsp;<I>By: Donovan Govan</I>';
mycontent[57]='<a href="http://www.newspapers24.com/polish-newspapers/index.html"><img src="/images/panoramic/poland_01.jpg" alt="Polish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Torun, Poland&nbsp;<I>By: Pko</I>';
mycontent[58]='<a href="http://www.newspapers24.com/portuguese-newspapers/index.html"><img src="/images/panoramic/portugal_01.jpg" alt="Portuguese Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Lisbon, Portugal&nbsp;<I>By: Sébastien Bertrand  </I>';
mycontent[59]='<a href="http://www.newspapers24.com/russian-newspapers/index.html"><img src="/images/panoramic/russia_01.jpg" alt="Russian Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Saint Petersburg, Russia&nbsp;<I>By: Danila Medvedev</I>';
mycontent[60]='<a href="http://www.newspapers24.com/singapore-newspapers/index.html"><img src="/images/panoramic/singapore_01.jpg" alt="Singapore Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Singapore&nbsp;<I>By: Ron2000</I>';
mycontent[61]='<a href="http://www.newspapers24.com/south-africa-newspapers/index.html"><img src="/images/panoramic/south_africa_01.jpg" alt="South Africa Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;South Africa&nbsp;<I>By: sporkist</I>';
mycontent[62]='<a href="http://www.newspapers24.com/south-africa-newspapers/index.html"><img src="/images/panoramic/south_africa_02.jpg" alt="South Africa Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;South Africa&nbsp;<I>By: sporkist</I>';
mycontent[63]='<a href="http://www.newspapers24.com/south-africa-newspapers/index.html"><img src="/images/panoramic/south_africa_03.jpg" alt="South Africa Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;South Africa&nbsp;<I>By: sporkist</I>';
mycontent[64]='<a href="http://www.newspapers24.com/korean-newspapers/index.html"><img src="/images/panoramic/south_korea_01.jpg" alt="Korean Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Daegu, South Korea&nbsp;<I>By: Thorfinn Stainforth </I>';
mycontent[65]='<a href="http://www.newspapers24.com/spanish-newspapers/index.html"><img src="/images/panoramic/spain_01.jpg" alt="Spanish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Ibiza, Spain&nbsp;<I>By: David McHale</I>';
mycontent[66]='<a href="http://www.newspapers24.com/spanish-newspapers/index.html"><img src="/images/panoramic/spain_02.jpg" alt="Spanish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Gijon, Spain&nbsp;<I>By: Roberto Sueiras</I>';
mycontent[67]='<a href="http://www.newspapers24.com/spanish-newspapers/index.html"><img src="/images/panoramic/spain_03.jpg" alt="Spanish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Santa Marina, Spain&nbsp;<I>By: Jesús Gómez Fernández</I>';
mycontent[68]='<a href="http://www.newspapers24.com/spanish-newspapers/index.html"><img src="/images/panoramic/spain_04.jpg" alt="Spanish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Ria de Vigo, Spain&nbsp;<I>By: Redy</I>';
mycontent[69]='<a href="http://www.newspapers24.com/swedish-newspapers/index.html"><img src="/images/panoramic/sweden_01.jpg" alt="Swedish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Stolkholm, Sweden&nbsp;<I>By: Sébastien Bertrand  </I>';
mycontent[70]='<a href="http://www.newspapers24.com/turkish-newspapers/index.html"><img src="/images/panoramic/turkey_01.jpg" alt="Turkish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Antalya, Turkey&nbsp;<I>By: Erencet</I>';
mycontent[71]='<a href="http://www.newspapers24.com/uk-scottish-newspapers/index.html"><img src="/images/panoramic/uk_01.jpg" alt="Scottish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Edinburgh, Scotland, UK&nbsp;<I>By: Dave Morris  </I>';
mycontent[72]='<a href="http://www.newspapers24.com/uk-scottish-newspapers/index.html"><img src="/images/panoramic/uk_02.jpg" alt="Scottish Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Edinburgh, Scotland, UK&nbsp;<I>By: Dave Morris  </I>';
mycontent[73]='<a href="http://www.newspapers24.com/uk-england-newspapers/index.html"><img src="/images/panoramic/uk_03.jpg" alt="England Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;London, England, UK&nbsp;<I>By: Jeff Wilcox  </I>';
mycontent[74]='<a href="http://www.newspapers24.com/uk-england-newspapers/index.html"><img src="/images/panoramic/uk_04.jpg" alt="England Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Fountains Abbey, England, UK&nbsp;<I>By: Klaus with K</I>';
mycontent[75]='<a href="http://www.newspapers24.com/us-south-dakota-newspapers/index.html"><img src="/images/panoramic/us_01.jpg" alt="South Dakota Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Manderson, South Dakota, USA&nbsp;<I>By: rlh</I>';
mycontent[76]='<a href="http://www.newspapers24.com/us-california-newspapers/index.html"><img src="/images/panoramic/us_02.jpg" alt="California Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;San Francisco, California, USA&nbsp;<I>By: Kevin</I>';
mycontent[77]='<a href="http://www.newspapers24.com/us-new-york-newspapers/index.html"><img src="/images/panoramic/us_04.jpg" alt="New York Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;New York City, New York, USA&nbsp;<I>By: sporkist</I>';
mycontent[78]='<a href="http://www.newspapers24.com/us-new-york-newspapers/index.html"><img src="/images/panoramic/us_05.jpg" alt="New York Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;New York City, New York, USA&nbsp;<I>By: sporkist</I>';
mycontent[79]='<a href="http://www.newspapers24.com/us-massachusetts-newspapers/index.html"><img src="/images/panoramic/us_06.jpg" alt="Massachusetts Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Boston, Massachusetts, USA&nbsp;<I>By: Hobbes vs Boyle</I>';
mycontent[80]='<a href="http://www.newspapers24.com/us-district-of-columbia-newspapers/index.html"><img src="/images/panoramic/us_07.jpg" alt="District Of Columbia Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Washington DC, USA&nbsp;<I>By: Jesse Warren  </I>';
mycontent[81]='<a href="http://www.newspapers24.com/us-oregon-newspapers/index.html"><img src="/images/panoramic/us_08.jpg" alt="Oregon Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Lake Billy Chinook, Oregon, USA&nbsp;<I>By: Stuart Seeger  </I>';
mycontent[82]='<a href="http://www.newspapers24.com/us-new-york-newspapers/index.html"><img src="/images/panoramic/us_09.jpg" alt="New York Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;New York City, New York, USA&nbsp;<I>By: Graeme Maclean </I>';
mycontent[83]='<a href="http://www.newspapers24.com/us-california-newspapers/index.html"><img src="/images/panoramic/us_10.jpg" alt="California Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Sausalito, Tiburo, California, USA&nbsp;<I>By: Kevin</I>';
mycontent[84]='<a href="http://www.newspapers24.com/us-new-york-newspapers/index.html"><img src="/images/panoramic/us_11.jpg" alt="New York Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Brooklin Bridge, New York City, New York, USA&nbsp;<I>By: Wally Gobetz</I>';
mycontent[85]='<a href="http://www.newspapers24.com/us-alaska-newspapers/index.html"><img src="/images/panoramic/us_12.jpg" alt="Alaska Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Beluga Point, Alaska, USA&nbsp;<I>By: James Stewart</I>';
mycontent[86]='<a href="http://www.newspapers24.com/us-illinois-newspapers/index.html"><img src="/images/panoramic/us_13.jpg" alt="Illinois Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Chicago Downtown, Illinois, USA&nbsp;<I>By: Marcin Klapczynski</I>';
mycontent[87]='<a href="http://www.newspapers24.com/us-oregon-newspapers/index.html"><img src="/images/panoramic/us_14.jpg" alt="Oregon Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Cape Cove, Oregon, USA&nbsp;<I>By: Gabor Eszes</I>';
mycontent[88]='<a href="http://www.newspapers24.com/us-arizona-newspapers/index.html"><img src="/images/panoramic/us_15.jpg" alt="Arizona Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Grand Canyon, Arizona, USA&nbsp;<I>By: Daniel Schwen</I>';
mycontent[89]='<a href="http://www.newspapers24.com/us-california-newspapers/index.html"><img src="/images/panoramic/us_16.jpg" alt="California Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;San Diego, California, USA&nbsp;<I>By: whoismanu</I>';
mycontent[90]='<a href="http://www.newspapers24.com/us-nevada-newspapers/index.html"><img src="/images/panoramic/us_17.jpg" alt="Nevada Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Las Vegas, Nevada, USA&nbsp;<I>By: Luiz Eduardo</I>';
mycontent[91]='<a href="http://www.newspapers24.com/us-new-york-newspapers/index.html"><img src="/images/panoramic/us_18.jpg" alt="New York Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;New York City, New York, USA&nbsp;<I>By: Daniel Schwen</I>';
mycontent[92]='<a href="http://www.newspapers24.com/us-newspapers/"><img src="/images/panoramic/us_19.jpg" alt="US Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Monument Valley, USA&nbsp;<I>By: Moritz Zimmermann</I>';
mycontent[93]='<a href="http://www.newspapers24.com/us-california-newspapers/index.html"><img src="/images/panoramic/us_20.jpg" alt="California Newspapers" width="740" height="180" border="0"></a><br/>&nbsp;&nbsp;Golden Gate, San Francisco, California, USA&nbsp;<I>By: Aaron Logan</I>';

var ry = Math.floor(Math.random()*mycontent.length);
