function showdiv(sel,typ) {

	var tidsel = document.getElementById(sel);

	if (typ==0) {
		tidsel.style.display = "none";
	
	} else {
		tidsel.style.display = "block";
	}
}


function showmenu(sel) {
	showdiv(sel,1);
}