<!-- Begin
function imagechange(tgt,img,lnk) 
{
	if (navigator.appName == "Microsoft Internet Explorer") 
	{
		var target = eval('document.images[\'' + tgt + '\']');
		var newimg = eval('img.src');
		var mylink = eval('document.all.' + lnk);
		if ((target != null) && (newimg != null))
			target.src = newimg;
		if (mylink != null)
			mylink.href = newimg;
   	}
	else
	{
		if (navigator.appName == "Netscape")
		{
			var target = eval('document.images[\'' + tgt + '\']');
			var newimg = eval('img.src');
			var mylink = document.getElementById(lnk);
			if ((target != null) && (newimg != null))
				target.src = newimg;
			if (mylink != null)
				mylink.href = newimg;
		}
		else
			alert("You will need Netscape 3 or Internet Explorer to view the albums.");
	}
}
// I'm back! -->