function changePicture(id, img) {
	var imgLoc = document.getElementById(id);
	if (imgLoc) {
		imgLoc.src=img;
	}
}