<!-- 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 -->



var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=300,width=300,scrollbars=yes,resizable=yes');
	if (window.focus) {newwindow.focus()}
}



<!-- Begin
function printWindow() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) window.print();
}
//  End -->

<!-- Begin
function toggleMe(a){
  var e=document.getElementById(a);
  if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block"
  } else {
    e.style.display="none"
  }
  return true;
}
//  End -->