/*  Poll.js
    Author: Shaun A. Noordin
    Date:   20090303
    
    Info:
    This is a JS class used for the mStar polls.
 */
function Poll(id, question, answers, counts, total) { this.id = id; this.question = question; this.answers = answers; this.counts = counts; this.total = total }