function showSixPointsWin(id) {
	makeRequest("/sixpointswin.asp?id=" + id, "sixpoints-window", "");
	var pos = getObj("container-main").offsetLeft + 15;
	getObj("sixpoints-window-container").style.left = pos + "px";
	getObj("sixpoints-window-container").style.display = "block";
	hideSelectForm();
}
function closeSixPointsWin() {
	getObj("sixpoints-window-container").style.display = "none";
	showSelectForm();
}
function hideSelectForm() {
	getObj("kursalt").style.visibility = "hidden";
}
function showSelectForm() {
	getObj("kursalt").style.visibility = "visible";
}