function JumpURL(selection) {
var tempIndex, selectedURL;
tempIndex = selection.selectedIndex;
selectedURL = selection.options[tempIndex].value;
window.open(selectedURL, 'netselect');
//window.top.location.href = selectedURL;
}
function openPoll()
{
window.open('sportvote/poll_working.swf','Poll','scrollbars=no,top=20,left=300, width=240,height=350')
}
function newWindow(newContent)
{
winContent = window.open(newContent, 'nextWin', 'left=300, top=20, width=495, height=540, toolbar=no,scrollbars=no, resizable=no')
}
function jumpPage(newLoc)
{
newPage = newLoc.options[newLoc.selectedIndex].value
	if (newPage != "")
	{
	window.location = newPage
	}
}
/* Poll Verification courtesy of HappyCog.com */
surveyClicked = false;
function checkSurvey(form) { 
	for (i = 0; i < form.answer.length; i++) {
		if (form.answer[i].checked) {
			surveyClicked = true;
			return true;
		}
	}
	alert('Please make your selection\n');
	return false;
}

function formatTime(i,ii){

}