﻿function openBrWindow(theURL,winName,features,fieldid) { 
  var newwin = window.open(theURL+'?'+fieldid,winName,features);
  newwin.focus()
}

function toggle(on, off, dis) {
    document.getElementById(off).style.display = "none";
    document.getElementById(on).style.display = dis;
    return false;
}
