<!--

// ------------------------------------------------------------
// Handle Image swapping
// ------------------------------------------------------------
function changeImage(strName, strNewSource) 
{
	if (document.images && document.images[strName])
		document.images[strName].src = strNewSource;
}

// -->
