function showList(id) {
	document.getElementById('list1').style.display = 'none';
	document.getElementById('list2').style.display = 'none';
	document.getElementById('list3').style.display = 'none';
	document.getElementById('list'+id).style.display = 'block';
}

function calendar_toggle() {
  if (document.getElementById('calendar_ul').style.display=='block') {
	document.getElementById('calendar_ul').style.display = 'none';
	document.getElementById('calendar_div').style.display = 'none';
	} else {
	document.getElementById('calendar_ul').style.display = 'block';
	document.getElementById('calendar_div').style.display = 'block';	
	}
}

function view_schedule(url) {
var options = "width=640,height=480,";
options += "resizable=no,scrollbars=yes,status=no,";
options += "menubar=no,toolbar=no,location=no,directories=no";
window.open(url, 'view_schedule', options);
}

function view(url, name, w, h) {
var options = "width=" + w + ",height=" + h + ",";
options += "resizable=no,scrollbars=no,status=no,";
options += "menubar=no,toolbar=no,location=no,directories=no";
window.open(url, name, options);
}

function kanal9_live() {
GB_showCenter('KANAL 9 - CANLI YAYIN', K9_LIVE_URL);
}
