/**
* LAST MOD: NOV 10 2009: DREW @ WWW.DREAMDESIGNSWEB.COM
* -----------------------------------------------------
*/
var isAgent=navigator.userAgent.toLowerCase();
function cleanFieldsets() {
	var fs=new Array();
	if(document.getElementById('voteRadioFS')) {
		fs[0]=document.getElementById('voteRadioFS');
		fs[1]=document.getElementById('voteResultFS');
		for(var i=0;i<fs.length;i++) {
			with(fs[i].style) {
				MozBorderRadius="3pt";
				webkitBorderRadius="3pt";
				if(fs[i].style.MozBorderRadius!=undefined && fs[i].style.MozBorderRadius!="") {
					border="solid 1px #c0c0c0";
				}else if(isAgent.indexOf('webkit')!=-1) {
					border="solid 1px #c0c0c0";
				}
			}
		}
	}
}
/**
* VOTING ON POLL
* t =	self ref
* e =	self event
* i =	mysql row ID
* v =	vote type
*/
function castVote(t,e,i,v) {
	//<img src="images/icon_loading2.gif" border="0" class="voteLoader" /> - adding vote
	window.location. replace('stripperpoll.php?i='+i+'&v='+v);
}
