function pull_inact(id) {
	if (document.getElementById(id))
    	a = document.getElementById(id);
		a.style.display = 'none';
		
}

function pull_act(id) {
	if (document.getElementById(id))
    	a = document.getElementById(id);
		a.style.display = 'block';
		a.focus();
}
