// JavaScript Document
function langshow (id){
document.getElementById(id).style.display = "inline";
}
function langhide (id){
document.getElementById(id).style.display = "none";
}