function switchView(switchObj){
	if(switchObj.style.display == 'none'){
		switchObj.style.display = 'block';
	}else{
		switchObj.style.display = 'none';
	}
	
}
