function pollPop() {
	pollwin = window.open('','pollwin','width=400,height=220,status=no,scrollbars=no,resizable=yes,toolbar=no');
	document.forms["myForm"].submit();
}
function pollResultsPop(poll_ID) {
	window.open('http://polls.cnet.com/polls/show_results.php?action=results&poll_ident='+poll_ID+'&template_set=cnet_fd','pollResults','width=400,height=220,status=no,scrollbars=no,resizable=yes,toolbar=no');
}

function snipNews(o) {
	navRoot = document.getElementById(o);
	if (navRoot!=null) {
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (i<2 || i>11) node.style.display = "none";
		}
	}
}