function change_forms(show,hide)
{
    document.getElementById(hide).style.display="none";
    document.getElementById(show).style.display="block";
}