<!--//joining javascript fragments 
// change row colour from blue(bg) to green and back on mouse over / out
img=new Image()
img.src='../images/ccffccLight.png'
function cngBG(obj,nc)
{
 obj.nc=obj.className
 obj.className=nc
 obj.onmouseout=function(){this.className=this.nc}
}

//behaviour if IE6

var addBehavior = false, ss = '../xthf.css';
if (window.XMLHttpRequest) {
  addBehavior = true;
}
else {
  /*@cc_on
  @if (@_jscript_version == 5.6) // IE6
  ss = 'xthf_ie6.css';
  addBehavior = true;
  @end @*/
}
if (addBehavior) {
  var e = document.createElement('link');
  e.rel = 'stylesheet';
  e.type = 'text/css';
  e.href = ss;
  document.getElementsByTagName('head')[0].appendChild(e);
  xAddEventListener(window, 'load', appOnload, false);
  xAddEventListener(window, 'unload', function(){if (window.xthf) window.xthf.unload();}, false);
}

function appOnload()
{
  //window.xthf = new xTableHeaderFixed('idFixedHeaderContainer', 'clsFixedHeaderTable', 'leftColumn', 1, 1, 'table1', 'table2', 'table3');
  window.xthf = new xTableHeaderFixed('idFixedHeaderContainer', 'clsFixedHeaderTable', 'leftColumn', 1, 1);
}
-->
