function g_changeImg(img, newImg)
{
	if (document.images)
	{
		if (newImg == null)
			document[img].src = img + "01.gif"
		else
			document[img].src = newImg;
	}
}

/////////////////////////////////////////////////////////////////////////////
// RESTOREIMG()
// --------------------------------------------------------------------------
//
// RESTORES THE IMAGE TO THE DEFAULT IMAGE
//
/////////////////////////////////////////////////////////////////////////////

function g_restoreImg(img, newImg)
{
	if (document.images)
	{
		if (newImg == null)
			document[img].src = img + "00.gif"
		else
			document[img].src = newImg;
	}
}