function toggle(id1,id2){
	document.getElementById(id1).style.display = "none";
	document.getElementById(id2).style.display = "block";
}


