// açılır menü
function showmenu(elmnt)
{
	document.getElementById(elmnt).style.display="block";
}
function hidemenu(elmnt)
{
	document.getElementById(elmnt).style.display="none"
}

function git_url(syf)
{
	var URL = syf.options[syf.selectedIndex].value;
	window.location.href = URL;
}
