function showDrop(drop_id) {
	document.getElementById(drop_id).style.display = 'block';
}

function hideDrop(drop_id) {
	document.getElementById(drop_id).style.display = 'none';
}