function twiigsURLEncode35756_34769200(plaintext)
{
  // The Javascript escape and unescape functions do not correspond
  // with what browsers actually do...
  var SAFECHARS =
    "0123456789" +                  // Numeric
    "ABCDEFGHIJKLMNOPQRSTUVWXYZ" +  // Alphabetic
    "abcdefghijklmnopqrstuvwxyz" +
    "-_.!~*'()";                    // RFC2396 Mark characters
  var HEX = "0123456789ABCDEF"; 
  var encoded = "";
  for(var i = 0; i < plaintext.length; i++ )
  {
    var ch = plaintext.charAt(i);
    if(ch == " ")
    {
      encoded += "+";				// x-www-urlencoded, rather than %20
    }
    else if(SAFECHARS.indexOf(ch) != -1)
    {
      encoded += ch;
    }
    else 
    {
      var charCode = ch.charCodeAt(0);
      if(charCode > 255)
      {
        alert( "Unicode Character '" + ch + "' cannot be encoded using standard URL encoding.\n" + "(URL encoding only supports 8-bit characters.)\n" + "A space (+) will be substituted." );
        encoded += "+";
      }
      else
      {
        encoded += "%";
        encoded += HEX.charAt((charCode >> 4) & 0xF);
        encoded += HEX.charAt(charCode & 0xF);
      }
    }
  } // for
  return encoded;
}

function twiigsInclude35756_34769200(script_filename)
{
  var html_doc = document.getElementsByTagName('head').item(0);
  var js = document.createElement('script');
  js.setAttribute('type', 'text/javascript');
  js.setAttribute('src', script_filename);
  html_doc.appendChild(js);
}

function twiigsPollLoading35756_34769200()
{
  var poll = document.getElementById('TWIIGSPOLL35756_34769200');
  poll.innerHTML = '<div class="TWIIGSPOLLloading"'+twiigsAddStyleBlock35756_34769200({"text-align":"center"})+'><img src="http://www.twiigs.com/img/loading.gif"'+twiigsAddStyleImage35756_34769200({})+'> Loading...</div>';
}

function twiigsPollVote35756_34769200(form, vote)
{
  var script_filename = 'http://www.twiigs.com/pollvote.js?pid=35756&ajax=1&w=1&color=';
  script_filename += '&pidsuffix=34769200';
  if(vote)
  {
    script_filename += '&vsubmit=1';
    if(form.ptype.value == 2)
    {
      script_filename += '&panswer=' + twiigsURLEncode35756_34769200(form.panswer.value);
    }
    else
    {
      if(form.pmultiple.value == 1)
        var answer = form.elements['paid[]'];
      else
        var answer = form.paid;
      var paid = '';
      for(i = 0; i < answer.length; i++)
      {
        if(answer[i].checked)
        {
          if(paid != '')
            paid += ','
          paid += answer[i].value;
        }
      }
      script_filename += '&paid=' + twiigsURLEncode35756_34769200(paid);
    }
  }
  twiigsPollLoading35756_34769200();  
  twiigsInclude35756_34769200(script_filename);  
  return false;
}

function twiigsPollView35756_34769200()
{
  twiigsPollLoading35756_34769200();
  var script_filename = 'http://www.twiigs.com/pollview.js?pid=35756&ajax=1&w=1';
  script_filename += '&pidsuffix=34769200'; 
  twiigsInclude35756_34769200(script_filename);
  return false;
}

function twiigsAddStyle35756_34769200(stype, mods)
{
  var params = {
    "background-color" : "transparent",
    "background-image" : "none",
    "border-style" : "none",
    "clear" : "none",
    "display" : "block",
    "float" : "none",
    "position" : "static",
    "visibility" : "visible",
    "height" : "auto",
    "line-height" : "normal", 
    "width" : "auto",
    "margin-top" : "0",
    "margin-right" : "0",
    "margin-bottom" : "0",
    "margin-left" : "0",
    "outline-style" : "none",
    "padding-top" : "0",
    "padding-right" : "0",
    "padding-bottom" : "0",
    "padding-left" : "0",
    "clip" : "auto",
    "overflow" : "hidden",
    "vertical-align" : "baseline",
    "z-index" : "auto",
    "letter-spacing" : "normal", 
    "text-align" : "left",
    "text-decoration" : "none",
    "text-indent" : "0",
    "text-shadow" : "none",
    "text-transform" : "none",
    "white-space" : "normal",
    "word-spacing" : "normal"
  }; 
  
  for(var i in stype)
    params[i] = stype[i];
  for(var i in mods)
    params[i] = mods[i];
  
  var style = ' style="';  
  for(var i in params)
  {
    if(params[i] != null)
      style += i + ": " + params[i] + "; ";
  }
  style += '"';

  return style;
}

function twiigsAddStyleBlock35756_34769200(mods)
{
  var stype = {
  };
  return twiigsAddStyle35756_34769200(stype, mods);
}

function twiigsAddStyleInline35756_34769200(mods)
{
  var stype = {
    "display" : "inline"
  };
  return twiigsAddStyle35756_34769200(stype, mods);
}

function twiigsAddStyleInput35756_34769200(mods)
{
  var stype = { 
    "background-color" : null,
    "background-image" : null,
    "border-style" : null,
    "display" : "inline",
    "text-shadow" : null
  };
  return twiigsAddStyle35756_34769200(stype, mods);
}

function twiigsAddStyleImage35756_34769200(mods)
{
  var stype = { 
    "background-color" : null,
    "background-image" : null,
    "display" : "inline",
    "height" : null, 
    "width" : null 
  };
  return twiigsAddStyle35756_34769200(stype, mods);
}

function twiigsAddStyleLink35756_34769200(mods)
{
  var stype = { 
    "display" : "inline",
    "text-decoration" : null
  };
  return twiigsAddStyle35756_34769200(stype, mods);
}

function twiigsAddStyleList35756_34769200(mods)
{
  var stype = { 
    "display" : "list-item",
    "list-style-type" : "none",
    "list-style-position" : "outside",
    "list-style-image" : "none"
  };
  return twiigsAddStyle35756_34769200(stype, mods);
}

function twiigsPollBarWidthSet35756_34769200()
{
  for(var i = 0; i < 5; i++)
    twiigsPollBarWidthSetBar35756_34769200(i, 20);
}

function twiigsPollBarWidthSetBar35756_34769200(i, n)
{
  var imgObj = document.getElementById("TWIIGSPOLL35756_34769200answerimg" + i);
  if(imgObj)
  {
    var itemObj = document.getElementById("TWIIGSPOLL35756_34769200answeritem" + i);
    if(itemObj)
    {
      if(itemObj.offsetWidth > 0)
      {
        var pctObj = document.getElementById("TWIIGSPOLL35756_34769200answerpct" + i);
        var pct = parseFloat(pctObj.innerHTML);
        imgObj.width = parseInt(pct * (parseInt(itemObj.offsetWidth) - 56));
        pctObj.innerHTML = parseInt(pct * 100) + "%";
      }
      else
      {
        if(n > 0)
        {
          n--;
          setTimeout('twiigsPollBarWidthSetBar35756_34769200(' + i + ', ' + n + ')', 100);
        }
      }
    }
  }
}

document.write('<div class="TWIIGSPOLLpollcontainer" '+twiigsAddStyleBlock35756_34769200({})+'>'
+' <div class="TWIIGSPOLLpoll" '+twiigsAddStyleBlock35756_34769200({"margin-top":"5px","margin-right":"5px","margin-left":"5px"})+'>'
+' <div class="TWIIGSPOLLquestion" '+twiigsAddStyleBlock35756_34769200({"margin-bottom":"8px","font-weight":"bold"})+'>'
+' <a class="TWIIGSPOLLquestionlink" href="http://www.twiigs.com/poll/Travel/United_States/35756" '+twiigsAddStyleInline35756_34769200({})+'>'
+'What is your must-have treat to eat when you visit Holiday World?</a>'
+' </div>'
+' <div id="TWIIGSPOLL35756_34769200" class="TWIIGSPOLLresponse" '+twiigsAddStyleBlock35756_34769200({})+'>'
+' <form method="POST" name="twiigsformpollvote35756_34769200" action="http://www.twiigs.com/vote" '+twiigsAddStyleBlock35756_34769200({})+'>'
+' <input type="hidden" name="pview" value="">'
+' <input type="hidden" name="pid" value="35756">'
+' <input type="hidden" name="ptype" value="1">'
+' <input type="hidden" name="pmultiple" value="0">'
+' <input type="hidden" name="results" value="1">'
+' <div class="TWIIGSPOLLanswers" '+twiigsAddStyleBlock35756_34769200({"margin-bottom":"8px"})+'>'
+' <ul class="TWIIGSPOLLanswerselection" '+twiigsAddStyleBlock35756_34769200({})+'>'
+' <li class="TWIIGSPOLLanswerselectionitem" '+twiigsAddStyleList35756_34769200({"margin-bottom":"7px","margin-left":"4px","*margin-bottom":"2px"})+'>'
+' <input class="TWIIGSPOLLanswerradio" type="radio" name="paid" value="5" '+twiigsAddStyleInput35756_34769200({})+'>'
+' Mmmm...fried Oreos. </li>'
+' <li class="TWIIGSPOLLanswerselectionitem" '+twiigsAddStyleList35756_34769200({"margin-bottom":"7px","margin-left":"4px","*margin-bottom":"2px"})+'>'
+' <input class="TWIIGSPOLLanswerradio" type="radio" name="paid" value="2" '+twiigsAddStyleInput35756_34769200({})+'>'
+' Fudge. Definitely fudge. </li>'
+' <li class="TWIIGSPOLLanswerselectionitem" '+twiigsAddStyleList35756_34769200({"margin-bottom":"7px","margin-left":"4px","*margin-bottom":"2px"})+'>'
+' <input class="TWIIGSPOLLanswerradio" type="radio" name="paid" value="3" '+twiigsAddStyleInput35756_34769200({})+'>'
+' Fresh, hot funnel cake. </li>'
+' <li class="TWIIGSPOLLanswerselectionitem" '+twiigsAddStyleList35756_34769200({"margin-bottom":"7px","margin-left":"4px","*margin-bottom":"2px"})+'>'
+' <input class="TWIIGSPOLLanswerradio" type="radio" name="paid" value="1" '+twiigsAddStyleInput35756_34769200({})+'>'
+' Pizza, please. </li>'
+' <li class="TWIIGSPOLLanswerselectionitem" '+twiigsAddStyleList35756_34769200({"margin-bottom":"7px","margin-left":"4px","*margin-bottom":"2px"})+'>'
+' <input class="TWIIGSPOLLanswerradio" type="radio" name="paid" value="4" '+twiigsAddStyleInput35756_34769200({})+'>'
+' Pickle on a stick, baby! </li>'
+' </ul>'
+' </div>'
+' <div class="TWIIGSPOLLpostinfo" '+twiigsAddStyleBlock35756_34769200({"margin-bottom":"8px","text-align":"right","display":"none"})+'>'
+' Created on Jul 17, 2009 </div>'
+' <div class="TWIIGSPOLLvote" '+twiigsAddStyleBlock35756_34769200({})+'>'
+' <p class="TWIIGSPOLLbutton" '+twiigsAddStyleBlock35756_34769200({"margin-top":"2px","margin-bottom":"2px","text-align":"center"})+'>'
+' <input class="TWIIGSPOLLsubmit" type="submit" name="vsubmit" value="Vote" onClick="return twiigsPollVote35756_34769200(document.twiigsformpollvote35756_34769200,true);" onDblClick="return twiigsPollVote35756_34769200(document.twiigsformpollvote35756_34769200,true);" '+twiigsAddStyleInput35756_34769200({"padding-right":"4px","padding-left":"4px","text-align":"center"})+'>'
+' </p>'
+' <p class="TWIIGSPOLLdisplayresults" '+twiigsAddStyleBlock35756_34769200({"margin-top":"2px","margin-bottom":"2px","text-align":"center"})+'>'
+' <a class="TWIIGSPOLLlink" href="http://www.twiigs.com/poll/Travel/United_States/35756?results=1" onClick="return twiigsPollVote35756_34769200(document.twiigsformpollvote35756_34769200,false);" onDblClick="return twiigsPollVote35756_34769200(document.twiigsformpollvote35756_34769200,false);" '+twiigsAddStyleLink35756_34769200({})+'>'
+'View Results</a>'
+' </p>'
+' </div>'
+' </form>'
+' </div>'
+' </div>'
+' </div>'
+'');
twiigsPollBarWidthSet35756_34769200();
