// ------------------------------------------------------------
//	CHANGEIMG.JS
// ------------------------------------------------------------
//	Gestisce la sostituzione di un'immagine
//
//	Data: 08-02-2006
// ------------------------------------------------------------

function ChangeImage(imgId, imgFile)
{
	var imgPath = "images/" ;
	
	document.getElementById(imgId).src = imgPath + imgFile;

	return false;
}