<!--
var thesite = "http://www.travisdart.com/poll/";
function openwin(did, vot) {
 var height = (document.pollform.elements.length - 1) * 25;
 window.open(thesite + 'poll.php?id=' + did + '&vote=' + vot, 'Submitted', 'resizable=1,width=250,height=' + height + ',left=200,top=50,location=0,menubar=0,toolbar=0,scrollbars=0');
}

var res;
function dopoll(id) {
 for (var cnt = 0; cnt <= document.pollform.elements.length - 2; cnt++) {
  if (document.pollform.elements[cnt].checked == true) {
    res = document.pollform.elements[cnt].value;
    break;
  }
 }
 openwin(id, res);
}
// -->
