﻿function Menu_Tab_Control()
{
	if (document.getElementById('Control_Bar').style.display=="none")
	{
		document.getElementById('Control_Bar').style.display="";
		document.getElementById('ID_IMG_01').src="/admin/imgs/arrow_left.png";
	}
	else
	{
		document.getElementById('Control_Bar').style.display="none";
		document.getElementById('ID_IMG_01').src="/admin/imgs/arrow_right.png";
	}
}

document.onmousemove=function(e)
{
  var obj = Utils.srcElement(e);
  if (typeof(obj.onclick) == 'function' && obj.onclick.toString().indexOf('listTable.edit') != -1)
  {
    obj.title = 'Click To Edit';
    obj.style.cssText = 'background: #009148;color:#FFFFFF;';
    obj.onmouseout = function(e)
    {
      this.style.cssText = '';
    }
  }
  else if (typeof(obj.href) != 'undefined' && obj.href.indexOf('listTable.sort') != -1)
  {
    obj.title = 'Click For Sorting';
  }
}
function CheckKey(e)
{
	if (window.event)
	{
		var keynum=e.keyCode;
	}
	if (keynum==13)
	{
		document.forms["control_panel"].submit();
	}
}
















