/* JavaScript program written by Larry N. Williams, June 2002
   This program changes main image when anchor is rolled over */
   
function chgImage(imgName, NewImage)
{

/* test to see if the browser understands rollovers
If it does swap one image for the other */

if (document.images)
{
document[imgName].src = NewImage;
}
}

