﻿function OnRollOver(obj) {
    var iPos = obj.src.indexOf('.jpg');
    obj.src = obj.src.substr(obj.src, iPos - 1) + 'r' + '.jpg';
}

function OnRollOut(obj,type) {
    var iPos = obj.src.indexOf('.jpg');
    obj.src = obj.src.substr(obj.src, iPos - 1) + type + '.jpg';

}

function Vote(c, l) {

    window.open('vote.aspx?c=' + c + '&l=' + l, 'Vote', 'height=200,width=400,status=yes,toolbar=no,menubar=no,location=no',false);
}