// Variables passed to the function ---------------
// i --- image file name to flip to
// name --- name from IMG tag of image to flip
function imageFlip(i,name, link, linkname) {
	document.images[name].src = i;
	x = document.getElementById(linkname);
	x.href = link;
	return true;
}
//-------------------------------------------------

