/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

function hideEm(emId){
	var h = document.getElementById(emId);
	h.style.display = 'none';
}

function showEm(emId){
	var s = document.getElementById(emId);
	s.style.display = '';
}

