Hi, I haven’t used it much as yet, so I am not familiar with it yet.. But once you have it set up for a poll. I found the easiest one to use was the remote java code. Just paste it into a html box on the front of your BV page & press preview for the result. See if this code works on your BV page.
<script language="JavaScript">//<!--
var curURL = document.URL;
var curPos = curURL.indexOf("?");
if(curPos <= 0)
{
var preURL = curURL;
var curURL = "?";
}
else
{
var preURL = curURL.substr(0,curPos);
var curURL = curURL.substr(curPos);
}
var remoteURL = 'http://www.shoppers-info.com';
var sURL = remoteURL +'/votepro/poll_distant.php'+ curURL +'&poll_id=3&our_remote_host='+ remoteURL +'&main_action_url=' + preURL;
document.write('<script language="JavaScript" ' +
'src="' + sURL + '"></script>');
//--></script>