﻿// Copyright (c) 2006 Global Relay Communications, Inc. All Rights Reserved.

var displayRow = (document.all) ? "block" : "table-row";

function SpecifyOther(ele) {
    var display = "none";
    if (ele.value == "Other") {
        display = displayRow;
    }
    document.getElementById("trOther").style.display = display;
}

function SourceChange(ele) {
    display = "none";
    if (ele.selectedIndex > 4) {
        display = displayRow;
    }
    document.getElementById("trSourceSpecify").style.display = display;
}