function chIssue(field)
{
	var issue = field.options[field.selectedIndex].value;
	if( issue == 'current' ) {
		location = "recentissue.html";
	}
	else {
		location = "" + issue + ".html";
	}
}

function Vote()
{
var votes = "" ;
	for(i=0;i<document.poll.option.length;i++)
	{
		  if(document.poll.option[i].checked)
		  {
			  votes = document.poll.option[i].value;
		  }
	}
	if (votes == "") 
	{
		alert("Please select an option!") ;
		return ;
	}
	poll_nm = document.poll.poll_nm.value;
	journal = document.poll.journal.value;
	b1 = document.poll.b1.value;
	window.open('http://tools.sterhoff.com/tools/poll.asp?option='+votes+'&poll_nm='+poll_nm+'&journal='+journal+'&b1='+b1,"Vote","width=500,height=235,resizable=no,scrollbars=no,menubar=no,status=no");
}