<!--
function back(){
		history.go(-1);
}

function closewin() {
			window.close();
}
		
function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

function chkbg(b){
bcolor="#CCEEFF";
b.style.backgroundColor = bcolor
}
function chkout(b){
color="#99CCFF";
b.style.backgroundColor=color
}
function openwin(name,winn) {
		window.open(name,winn,"scrollbars=1,width=360,height=623,top=0, left=0");
} 

function poll_results(action,URL,winName,features) {
    	choice = '';
    	for (i=0; i<self.document.poll.choice.length; i++) {
		if(self.document.poll.choice[i].checked == true) {
            		choice = self.document.poll.choice[i].value;
        			break;
    				}
    	}
    	if (action=='results' || (choice != '' && action=='vote')) {
        			URL = URL+'?action='+action+'&choice='+choice;
        			poll_popup = window.open(URL,winName,features);
     				poll_popup.focus();
   					}
    	return false;
}
//-->


