Man ESPN is deleting alot of the comments. Someone even posted how to do a bot and it was taken off within a minute.
Yeah I copied it before they deleted it, he posted it multiple times.
Modified for Nebraska of course. Save it as a .vbs file in windows and click it. I'm not certain it will work though, but it won't harm your computer. You won't be able to see it running, it'll just pop up alert windows at you.
Code:
for x = 1 to 10000
url = "http://poll.espn.go.com/cgi/sz/poll.dll?goTo=http://espn.go.com/poll&domain=.go.com&questions=1&id=116034&qid=115945&service=SZ&count_0=2&expected_0=1&vote_0=403215"
set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
xmlhttp.open "GET", url, false
xmlhttp.send ""
'msgbox LEFT(xmlhttp.responseText,200)
set xmlhttp = nothing
next
msgbox "DONE"