function showdiv(x)
{
	document.getElementById("dropdown" + x).className = "dropdown" + x + " visible";
}

function hidediv(x)
{
	document.getElementById("dropdown" + x).className = "dropdown" + x + " invisible";
}
