  function selOn(ctrl)
  {
	ctrl.style.backgroundColor = '#FF9900';
	ctrl.style.cursor = 'pointer';
  }

  function selOff(ctrl)
  {
	ctrl.style.backgroundColor = '';
  }
  function selDown(ctrl)
  {

	ctrl.style.backgroundColor = '#8492B5';
  }

  function selUp(ctrl)
  {
    ctrl.style.backgroundColor = '#ccffff';
  }

  function openLink(URI)
  {
	win = window.open(URI,"secWin","left=100,scrollbars=yes,resizable=yes,location=yes");
	win.focus;
  }

  function clickTable(id,order)
  {
	  document.getElementById("content").style.top = (10+(30*order))+"px";
	  getData('mainAjax.php?id='+id);
	  window.scroll(0,((10+(30*order))-40));
  }

