var yazarTimer = null;

function showYazarPanel(visible) {
	if (visible) {
		// hizli erisimi gizle
		var pnlErisim = document.getElementById("divYazarErisim");
		pnlErisim.style.display = "none";

		// clear list2 and fill with current selection
		fillYazarList2();
	}

	var pnl = document.getElementById("divYazarSecim");
	if (pnl != null)
		pnl.style.display = visible ? "block" : "none";
}

function toggleYazarErisimPanel() {
	var pnl = document.getElementById("divYazarErisim");
	var visible = pnl.style.display == "none";

	if (visible)
		showYazarErisimPanel();
	else
		hideYazarErisimPanel();
}

function hideYazarErisimPanel() {
	var pnl = document.getElementById("divYazarErisim");
	pnl.style.display = "none";
}

function hideYazarErisimPanelDelayed() {
	setYazarTimeout('hideYazarErisimPanel()', 1000);
}

function showYazarErisimPanel() {
	// yazar secimini gizle
	cancelYazarChange();

	var pnl = document.getElementById("divYazarErisim");
	pnl.style.display = "block";
}

function clearYazarTimeout() {
	if (yazarTimer != null) {
		clearTimeout(yazarTimer);
		yazarTimer = null;
	}
}

function setYazarTimeout(code, duration) {
	clearYazarTimeout();
	yazarTimer = setTimeout(code, duration);
}

function cancelYazarChange() {
	showYazarPanel(false);
}

