function changeBodyId(oldId, newId)
{
	var el = document.getElementById(oldId);
	el.id = newId;
}