
function replaceImage(imageID, newImagePath) {

	var image;
	image = document.getElementById(imageID);
	image.src = newImagePath;

}

function enlargeImage(url) {
	window.open(url, '001', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, copyhistory=no,  width=700, height=645');
}