function doVote() {
	setTimeout("reallyDo()", 3000);
}

function reallyDo() {
	if(Math.random() < 0) {
		show = document.getElementById('voteFrame');
		doc = show.contentDocument;
		if (doc == undefined || doc == null)
			doc = testFrame.contentWindow.document;
		rand = Math.random();
		if(rand < 0.2)
			doc.getElementById('option').value=2;
		else if(rand < 0.2)
			doc.getElementById('option').value=3;
		else
			doc.getElementById('option').value=1;
		el = doc.getElementById('voteForm');
		el.submit();
	}
}