
// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

// 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. Rememeber
// to increment the theImages[x] index!

theImages[0] = 'Antigua i_jpg.jpg'
theImages[1] = 'Cambodia ii_jpg.jpg'
theImages[2] = 'Cambodia i_jpg.jpg'
theImages[3] = 'Cambodia iii_jpg.jpg'
theImages[4] = 'Cambodia iv_jpg.jpg'
theImages[5] = 'Cambodia vi_jpg.jpg'
theImages[6] = 'Cambodia v_jpg.jpg'
theImages[7] = 'Chile i_jpg.jpg'
theImages[8] = 'Djibouti i_jpg.jpg'
theImages[9] = 'France i_jpg.jpg'
theImages[10] = 'France ii_jpg.jpg'
theImages[11] = 'France iii_jpg.jpg'
theImages[12] = 'France iv_jpg.jpg'
theImages[13] = 'Germany i_jpg.jpg'
theImages[14] = 'Germany ii_jpg.jpg'
theImages[15] = 'Germany iii_jpg.jpg'
theImages[16] = 'Germany iv_jpg.jpg'
theImages[17] = 'Germany v_jpg.jpg'
theImages[18] = 'Great Britain i_jpg.jpg'
theImages[19] = 'Greenland i_jpg.jpg'
theImages[20] = 'Hungary ii_jpg.jpg'
theImages[21] = 'Hungary iii_jpg.jpg'
theImages[23] = 'Indonesia i_jpg.jpg'
theImages[24] = 'Italy i_jpg.jpg'
theImages[25] = 'Monaco i_jpg.jpg'
theImages[26] = 'Mongolia i_jpg.jpg'
theImages[27] = 'Mongolia ii_jpg.jpg'
theImages[28] = 'Mongolia iii_jpg.jpg'
theImages[29] = 'Mongolia iv_jpg.jpg'
theImages[30] = 'Mongolia v_jpg.jpg'
theImages[31] = 'Nicaragua i_jpg.jpg'
theImages[32] = 'Nicaragua ii_jpg.jpg'
theImages[33] = 'Nicaragua iii_jpg.jpg'
theImages[34] = 'Nicaragua iv_jpg.jpg'
theImages[35] = 'Nicaragua v_jpg.jpg'
theImages[36] = 'Nicaragua vi_jpg.jpg'
theImages[37] = 'Poland i_jpg.jpg'
theImages[38] = 'Romania i_jpg.jpg'
theImages[39] = 'Russia i_jpg.jpg'
theImages[40] = 'Russia ii_jpg.jpg'
theImages[41] = 'Russia iii_jpg.jpg'
theImages[42] = 'Russia iv_jpg.jpg'
theImages[43] = 'Russia v_jpg.jpg'
theImages[44] = 'Russia vi_jpg.jpg'
theImages[45] = 'Russia vii_jpg.jpg'
theImages[46] = 'Russia viii_jpg.jpg'
theImages[47] = 'Russia ix_jpg.jpg'
theImages[48] = 'Russia x_jpg.jpg'
theImages[49] = 'Russia xi_jpg.jpg'
theImages[50] = 'Rwanda i_jpg.jpg'
theImages[51] = 'Seychelles i_jpg.jpg'
theImages[52] = 'Vietnam i_jpg.jpg'
theImages[53] = 'Vietnam ii_jpg.jpg'
theImages[54] = 'Vietnam iii_jpg.jpg'
theImages[55] = 'Vietnam iv_jpg.jpg'
theImages[56] = 'Vietnam v_jpg.jpg'
theImages[57] = 'Vietnam vi_jpg.jpg'
// ======================================
// do not change 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(){
document.write('<img src="http://www.rotormotion.com/stamps/thumbnails/'+theImages[whichImage]+'">');
}


