// this will open a new window, submit the poll form, and send the results to the popup window

function pollSubPop (earl, name, widgets, specialsURL) 
{
	var url = earl;
	popupWin = window.open(url, name, widgets);
	popupWin.opener.top.name = "opener";
	popupWin.focus();
}


