var loginSel = null;
function toggleLayer(id){
	if(loginSel == null || loginSel != id){
		loginSel = id;		
		getEl('divCand').style.display = 'none';
		getEl('divClient').style.display = 'none';		
		getEl(id).style.display = 'block';
	}else{
		loginSel = null;
		getEl(id).style.display = 'none';
	}
}

