function pop_win(URL,width,height) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width="+width+",height="+height+",left = 15,top = 20');");
}

function ShowChannel(group) {
	var channel = document.forms['ChannelPicker'].elements['channel_'+group];
	if (channel.value != 0) {
		location.href='?group='+group+'&cid='+channel.value;
	}
}

function ShowGroup(group) {
	var group = document.forms['ChannelPicker'].elements['group'];
	if (group.value != 0) {
		location.href='?group='+group.value;
	}
}

function ShowSpecial() {
	var special = document.forms['ChannelPicker'].elements['special_modes'];
	if (special.value != 0) {
		location.href='?cid='+special.value;
	}
}