function ChangeImage(sImg, sSrc) 
{
		document.images[sImg].src = sSrc;
}

function showBigImage(sImg) {
	imageWindow = window.open(sImg, "Preview", "width=420, height=325, resizable=no");
	imageWindow.focus();
}
