
<!-- 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 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 -->

<!-- Begin
function printWindow() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
}
//  End -->

<!-- Begin

image1 = new Image();
image1.src = '../hdr.jpg';

image2 = new Image();
image2.src = '../hdr2.jpg';

image3 = new Image();
image3.src = '../hdr3.jpg';

image4 = new Image();
image4.src = '../hdr4.jpg';

image5 = new Image();
image5.src = '../hdr5.jpg';

image6 = new Image();
image6.src = '../hdr6.jpg';

image7 = new Image();
image7.src = '../hdr7.jpg';

image8 = new Image();
image8.src = '../hdr8.jpg';

image9 = new Image();
image9.src = '../hdr9.jpg';

image10 = new Image();
image10.src = '../hdr10.jpg';

// End -->



<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration = 5;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = '../hdr.jpg'
Pic[1] = '../hdr2.jpg'
Pic[2] = '../hdr3.jpg'
Pic[3] = '../hdr4.jpg'
Pic[4] = '../hdr5.jpg'
Pic[5] = '../hdr6.jpg'
Pic[6] = '../hdr7.jpg'
Pic[7] = '../hdr8.jpg'
Pic[8] = '../hdr9.jpg'
Pic[9] = '../hdr10.jpg'

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->