// JavaScript Document
function showdd(){
	document.getElementById('dropdown').style.display = 'block';
}
function hidedd(){
	document.getElementById('dropdown').style.display = 'none';
}