function show_search() {
	search_link.style.display = 'none';
	search_field.style.display = 'inline';
	go_button.style.display = 'inline';
	search_field.focus();
}
function open_transcript(href) {
	window.open(href, '');
}
function vox(type,id,title) {
	remote = window.open("","vox","width=630,height=600,resizable=1,scrollbars=yes");
	remote.location.href = "comments_popup.cfm?type=" + type + "&id=" + id + "&title=" + title;
	if (remote.opener == null)
		remote.opener = window;
	remote.opener.name = "opener";
}
function jumpDate(dDate, nYear, nMonth, nDate, nDay ) {
	var sDateString = ( nMonth + "/" + nDate + "/" + nYear );
	new_href = 'index.cfm?go=Board&StartDate=' + sDateString + 'criteria=' + criteria;
	alert(new_href);
	//window.location.href = new_href;
}