
if (document.images) {
home2 = new Image();home2.src = 'images/tim-green-adult.jpg';
home2a = new Image();home2a.src = 'images/tim-green-adult-over.jpg';
home3 = new Image();home3.src = 'images/tim-green-kids.jpg';
home3a = new Image();home3a.src = 'images/tim-green-kids-over.jpg';



}
function di(id,name){
  if (document.images) {document.images[id].src=eval(name+".src"); }
}

// function that displays status bar message

function dm(msgStr) {
  document.returnValue = false;
  if (document.images) { 
     window.status = msgStr;
     document.returnValue = true;
  }
}
var showMsg = navigator.userAgent != "Mozilla/4.0 (compatible; MSIE 4.0; Mac_PowerPC)";
function dmim(msgStr) {
  document.returnValue = false;
  if (showMsg) { 
    window.status = msgStr;
    document.returnValue = true;
  }
}

function popup(url){
	newwindow=window.open(url,"photo","width=620,height=550,resizable,location=no,scrollbars=yes,status=no,screenX=100,screenY=100,top=100,left=100");
	newwindow.focus();
	}



