function gochat() {
	openWin('/primetime/star_search/popups/chatclosed.shtml',510,370,'chatclosed','no');
}

function goVote() {
	var vID1 = 0;
	var vID2 = 0;
	var vote1 = document.opPoll.q1;

	for (var i = 0; i < vote1.length; i++){
		if (vote1[i].checked) {vID1 = vote1[i].value};
	}
//	document.location = "http://poll.cbs.com/poll?event_id=76&q1="+vID1
	
		window.open("http://poll.cbs.com/poll?event_id=77&q1="+vID1, "pollWin", "width=510,height=400,menubar=0,location=0,scrollbars=0", "0" );
		//whandle.focus();
			
}



//Poll function*****************************************************
function pollResults(address,pollName){
var qID = 0
var radioGrp = document.forms[pollName].q1;
for (var i = 0; i < radioGrp.length; i++){
	if (radioGrp[i].checked) {qID = radioGrp[i].value}}
		if (qID == 0)
		alert('Please select an answer before voting.')
		else{
		var whandle = window.open( address + qID, "pollWin", "width=510,height=400,menubar=0,location=0,scrollbars=0", "0" );
		whandle.focus();
	}
}
//**********************************************************************
