<!-- Begin

image1 = new Image();
image1.src = 'images/index/homepic_1.jpg';

image2 = new Image();
image2.src = 'images/index/homepic_2.jpg';

image3 = new Image();
image3.src = 'images/index/homepic_3.jpg';

// End -->

<!-- Begin

function LoadGallery(pictureName,imageFile)
{
  if (document.all)
  {
    document.getElementById(pictureName).style.filter="blendTrans(duration=1)";
    document.getElementById(pictureName).filters.blendTrans.Apply();
  }
  document.getElementById(pictureName).src = imageFile;
  if (document.all)
  {
    document.getElementById(pictureName).filters.blendTrans.Play();
  }

}

// End -->

<!-- Hide this script from old browsers --

var imagenumber = 3;

var randomnumber = Math.random() ;

var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;

images = new Array

images[1] = '<img SRC="images/index/homepic_1.jpg" width=426 height=546 id="homepic">'

images[2] = '<img SRC="images/index/homepic_2.jpg" width=426 height=546 id="homepic">'

images[3] = '<img SRC="images/index/homepic_3.jpg" width=426 height=546 id="homepic">'

var image = images[rand1]

// -- End Hiding Here -->


<!-- //Hide the script from browsers with JS disabled.

function openWindow(url, name, width, height) {mywin = window.open(url, name, 'width=' + width + ',height=' + height + ',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1')}

// End -->