// DESCRIPTION: Popup Window
function MM_openBrWindow(theURL,winName,features) { //v2.0
  var wChild = window.open(theURL,winName,features);
  wChild.opener = self;
}

// DESCRIPTION: Other Field
function toggleField(val) { 
var o = document.getElementById('tOtherReason'); 
(val == 'tOtherReason')? o.style.display = 'block' : o.style.display = 'none'; 
}