﻿function SubmitCompare(node, product) {
    var list = document.getElementById("nid");
    if (list) {
        var value = list[list.selectedIndex].value;
        if (value) {
            window.location.href = node + "?nid=" + product + "," + value;
        }
     }
    return false;
}