﻿function getLatestPoll(){
	PageMethods.getLatestPOll(getLatestPollCallBack);
}

function getLatestPollCallBack(Arg){
	getMovie("flash").getLatestPollReturn(Arg);
}

function getRecordResults(PollName, Q, A){
	PageMethods.getRecordResults( PollName  ,  Q  ,  A ,  readCookie('SessionUID'), getRecordResultsCallBack);
}

function getRecordResultsCallBack(Arg){
	getMovie("flash").getRecordResultsReturn(Arg);
}

function getMovie(movieName) {
    if (window[movieName]){
        return window[movieName];
    } else {
        return document[movieName];
    }
}