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