function hidepop(div_id) {
	var el = document.getElementById(div_id);
	el.style.display = 'none';
}
