<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array.

theImages[0] = '/all_images/locations_images/Kanur.jpg'
theImages[1] = '/all_images/locations_images/Alishan.jpg'
theImages[2] = '/all_images/locations_images/brandywine.jpg'
theImages[3] = '/all_images/locations_images/KanyaKumari.jpg'
theImages[4] = '/all_images/locations_images/loch_lomond.jpg'
theImages[5] = '/all_images/locations_images/taj_mahal.jpg'
theImages[6] = '/all_images/locations_images/Wawel_Castle_Krakow.jpg'
theImages[7] = '/all_images/locations_images/hyderabad1.jpg'

var theDescription = new Array() // do not change this

theDescription[0] = 'Coconut tree-lined beach near Kannur, in Kerala state India. The name translates to \'land of coconut trees\' in the Malayalam language'
theDescription[1] = 'Alishan\'s famous \'sea of clouds\', a must-see for tourists visiting in Taiwan'
theDescription[2] = 'The Brandywine falls, 25 miles south of Cleveland, Ohio - spectacular all year round'
theDescription[3] = 'The southern most tip of India. Look up north and you will see a mighty nation, whose feet are washed by three oceans'
theDescription[4] = 'Loch Lomond, viewed from above Ben Lomond - in the west of Scotland'
theDescription[5] = 'The majestic Taj Mahal. One of the seven wonders of the world located in Agra, Northern India'
theDescription[6] = 'Wawel Castle - an example of Krakow\'s stunning architecture'
theDescription[7] = 'Often called the \'Arc de triomphe of the East\', Charminar means \'Four Minarets\' in Urdu language. This elegant and legendary edifice is not only the pride of Hyderabad but also of India.'

// do not edit anything below this line

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));

function showImage(){
var iWidth = 10;
var iHeight = document.images[3].height;
var indice = 0;
for (x = 0; x < document.images.length; x++){
  if (document.images[x].name == "Erie") {
    indice = x;
  }
}

//alert(document.images[indice].name);
document.write('<img src="'+theImages[whichImage]+'" title="'+theDescription[whichImage]+'" align="right" class="border" halign="5" name="Erie">');
}

//  End -->

