function ReplaceContentInContainer(id,content) {
	var container = document.getElementById(id);
	container.innerHTML = content;
}

function changePicSrc(id, img) {
	document.getElementById(id).src = img;
}
