﻿
//With the id of an element populate another elements value.
function savekey(sourceObj, destid) {
    var s = sourceObj;
    var d = document.getElementById(destid);
    d.value = s.attributes.getNamedItem("value").value;
    return true
}


