var csoportkepURL;

function setLinkActive(img) {
	normalUrl = img.src;
	activeUrl = normalUrl.replace(/.jpg/, "_active.jpg");
	img.src = activeUrl;
}

function setLinkInactive(img) {
	activeUrl = img.src;
	normalUrl = normalUrl.replace(/_active.jpg/, ".jpg");
	img.src = normalUrl;
}

function highlight(cell) {
	cell.style.backgroundColor = "#d09841";
}

function unhighlight(cell) {
	cell.style.backgroundColor = "#e7b76d";
}

function show(who) {
	csoportkepURL = document.getElementById("csoportkep").src;
	img = document.getElementById("csoportkep");
	img.src = img.src.replace(/.jpg/, "_" + who + ".jpg");
}

function showall() {
	img = document.getElementById("csoportkep");
	img.src = csoportkepURL;
}

function enlargeMap() {
	newWin = window.open('map.html', 'map', 'width=630,height=630,left=0,top=0,toolbar=no,location=no,status=no,scrollbars=no,resizable=no,menubar=no');
	newWin.focus();
}
