<!-- 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] = 'Partners/1.gif'
theImages[1] = 'Partners/2.gif'
theImages[2] = 'Partners/3.gif'
theImages[3] = 'Partners/4.gif'
theImages[4] = 'Partners/5.gif'
 
var pickimages = new Array()
 
pickimages[0]=0
pickimages[1]=0
pickimages[2]=0
 
// 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]
}
 
function ispicked(img)
{
  var count = 0
  var found = 0
  var countp = pickimages.length;
  for (count = 0; count < countp; count++){
     if (img==pickimages[count])
	{
		found=1;	
	} 
}
	return found;
}
 
var whichImage = Math.round(Math.random()*(p-1));
pickimages[0]=whichImage;
 
function showImage(){
document.write('<table><tr><td width=92 style=padding:2px>');
document.write('<img src="'+theImages[whichImage]+'">');
document.write('</td><td>');
for (i = 0; i < p; i++) 
{
  if (ispicked(i)==0)
    {
     whichImage = Math.round(i);
    }
}
pickimages[1]=whichImage;
document.write('<img src="'+theImages[whichImage]+'">');
document.write('</td></tr><tr><td width=92 style=padding:2px>');
for (i = 0; i < p; i++) 
{
  if (ispicked(i)==0)
    {
     whichImage = Math.round(i);
    }
}
pickimages[2]=whichImage;
document.write('<img src="'+theImages[whichImage]+'">');
document.write('</td><td width=92 style=padding:2px>');
for (i = 0; i < p; i++) 
{
  if (ispicked(i)==0)
    {
     whichImage = Math.round(i);
    }
}
document.write('<img src="'+theImages[whichImage]+'">');
document.write('</td></tr></table>');
}

