function openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function ShowHide(target)

{

    obj=(document.all) ? document.all[target] : document.getElementById(target);

    obj.style.display=(obj.style.display=='none') ? 'inline' : 'none';

}









