// JavaScript Document

function goForm(tohide , toshow){
	if(document.getElementById(tohide)){
		h=document.getElementById(tohide);
		h.className = 'hide';
	}
	if(document.getElementById(toshow)){
		s=document.getElementById(toshow);
		s.className = 'show';
	}
}