function openWindow(theURL,winName,features) {
window.open(theURL,winName,features);
}

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


function popUpResultsWin(height, width, url) {
window.open(
            "",
            "PollResults",
            "width="+width+",height="+height+",RESIZABLE=NO,SCROLLBARS=YES"
     );
}

