function removeImage(parentID, imgID) {
	var p = document.getElementById(parentID);
	var i =document.getElementById(imgID);
	p.removeChild(i);
}