function CellMouseOver(id, color) {
	var elem = document.getElementById(id);
	elem.style.backgroundColor = color;
}
function CellMouseOut(id, color) {
	var elem = document.getElementById(id);
	elem.style.backgroundColor = color;
}
function ChangeLanguage(code) {
	loadXMLDoc("/inc/lang.php", "lang=" + code, 1, 1, "LangCallBack");
}
function LangCallBack(response) {
	//alert(unescape(response));
	window.location = window.location;
}
