﻿// JScript File
function VoteSubmitWithOption(strOptionCount,QuestionID)
{
    var strCheckedCount=0;
    for(var i=0;i<strOptionCount;i++)
    {
        if(document.getElementById("radbtnOption_"+i).checked==true)
        {   
            strCheckedCount++;
            window.location.href="vote-update.aspx?qid=" + QuestionID + "&id=" + document.getElementById("radbtnOption_"+i).value;
            break;
        }
    }
    if(strCheckedCount==0)
    {
        window.location.href="opinion-surveyquestion.aspx?qid=" + QuestionID;
    }
}
function roll_over(img_name, img_src)
{
    document[img_name].src = img_src;
}
