var HIDDEN = "none";
var VISIBLE = "block";

function LanguageSelect(oCid) {
	var langDiv = document.getElementById(oCid);
	if (langDiv.style.display == "" || langDiv.style.display == HIDDEN) {
		show(langDiv);
	} else {
		hide(langDiv);
	}
}

function show(target) {
	target.style.display = VISIBLE;
}
function hide(target) {
	target.style.display = HIDDEN;
}

function getURL(url) {
	window.location = url;
}