/* photo.js -- JavaScript code specific to the photography section.  */

/*
 * Copyright (C) 2005 Tudor Hulubei <tudor@hulubei.net>.
 * Distributed under the GNU General Public License.
 */


function GenerateMostPopularLinksHeading()
{
    document.write('Most popular:&nbsp;');
}


function GenerateMostPopularLinks(multiLine)
{
    var index = 1;
    var directory = multiLine ? "" : "../../../";

    document.write('<a href="' + directory +
                   'T/r/Tribute-Of-Light/Tribute-Of-Light-NewYork.html"' +
                   ' alt="Tribute Of Light, NYC"' +
                   ' title="Tribute Of Light, NYC">' +
                   (multiLine ? 'Tribute Of Light, NYC' : index++) + '</a>');
    multiLine ? document.write('<br/>') : document.write('&nbsp;');

    document.write('<a href="' + directory +
                   'A/n/Anaconda/Anaconda-Miscellaneous.html"' +
                   ' alt="Anaconda Snake"' +
                   ' title="Anaconda Snake">' +
                   (multiLine ? 'Anaconda Snake' : index++) + '</a>');
    multiLine ? document.write('<br/>') : document.write('&nbsp;');

    document.write('<a href="' + directory +
                   'B/i/Big-Ben/Big-Ben-London.html"' +
                   ' alt="Big Ben (The Clock Tower), London"' +
                   ' title="Big Ben (The Clock Tower), London">' +
                   (multiLine ? 'Big Ben (The Clock Tower), London' : index++) + '</a>');
    multiLine ? document.write('<br/>') : document.write('&nbsp;');

    document.write('<a href="' + directory +
                   'T/u/Tulip/Tulip-Favorites.html"' +
                   ' alt="Tulip"' +
                   ' title="Tulip">' +
                   (multiLine ? 'Tulip' : index++) + '</a>');
    multiLine ? document.write('<br/>') : document.write('&nbsp;');

/*
    document.write('<a href="' + directory +
                   'T/h/The-Devil/The-Devil-People.html"' +
                   ' alt="The Devil"' +
                   ' title="The Devil">' +
                   (multiLine ? 'The Devil' : index++) + '</a>');
    multiLine ? document.write('<br/>') : document.write('&nbsp;');

    document.write('<a href="' + directory +
                   'B/u/Buoy-And-Boat/Buoy-And-Boat-Ireland.html"' +
                   ' alt="Buoy And Boat in Dublin, Ireland"' +
                   ' title="Buoy And Boat in Dublin, Ireland">' +
                   (multiLine ? 'Buoy And Boat in Dublin, Ireland' : index++) + '</a>');
    multiLine ? document.write('<br/>') : document.write('&nbsp;');

    document.write('<a href="' + directory +
                   'K/i/Kite-Surfing/Kite-Surfing-Hawaii.html"' +
                   ' alt="Kite Surfing in Hawaii"' +
                   ' title="Kite Surfing in Hawaii">' +
                   (multiLine ? 'Kite Surfing in Hawaii' : index++) + '</a>');
    multiLine ? document.write('<br/>') : document.write('&nbsp;');

    document.write('<a href="' + directory +
                   'W/T/WTC-Site-1/WTC-Site-1-NewYork.html"' +
                   ' alt="World Trade Center Site, NYC"' +
                   ' title="World Trade Center Site, NYC">' +
                   (multiLine ? 'World Trade Center Site, NYC' : index++) + '</a>');
    multiLine ? document.write('<br/>') : document.write('&nbsp;');

    document.write('<a href="' + directory +
                   'O/r/Orient-Queen-Cruise-Ship/Orient-Queen-Cruise-Ship-Lebanon.html"' +
                   ' alt="Orient Queen Cruise Ship, Lebanon"' +
                   ' title="Orient Queen Cruise Ship, Lebanon">' +
                   (multiLine ? 'Orient Queen Cruise Ship, Lebanon' : index++) + '</a>');
    multiLine ? document.write('<br/>') : document.write('&nbsp;');
*/

    document.write('<a href="' + directory +
                   'P/e/People-On-The-Beach-1/People-On-The-Beach-1-Ireland.html"' +
                   ' alt="People On The Beach in Dingle, Ireland"' +
                   ' title="People On The Beach in Dingle, Ireland">' +
                   (multiLine ? 'People On The Beach in Dingle, Ireland' : index++) + '</a>');
}

