
// Swap image
// Set SRC of image with NAME=strImage to strSource
//
function swapImage(strImage, strSource)
{
	document[strImage].src = strSource;
	return true;
}

//-------------------------------------



