// JavaScript Document

	function valJoin(){
		document.frmJoin.action = '/join/save'
		return true
	}
	
	function showJoinForm(dat) {
		if (dat == "3") {
			document.getElementById('joinGeneralUser').style.display = 'block';
			document.getElementById('joinAttorney').style.display = 'block';
			document.getElementById('joinFooter').style.display = 'block';
		}				
		else if (dat == "4") {
			document.getElementById('joinGeneralUser').style.display = 'block';
			document.getElementById('joinAttorney').style.display = 'none';
			document.getElementById('joinFooter').style.display = 'block';
		}				
	}
	
	function valContact(){
		document.frmContact.action = '/contact/save'
		return true
	}	
	
	function valPassword(){
		document.frmPassword.action = '/password/save'
		return true
	}	
	
	function valRecover(){
		document.frmRecover.action = '/password/recover/save'
		return true
	}	
	
	