// JavaScript Document
//Comm AJEX Code//

function GetXmlHttpObject()
{
var xmlHttp=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp;
}
//End Comm AJEX Code//

function changeColor(val)
{
	document.getElementById(val).className="txtboxSelect";
}
function resetColor(val)
{
	document.getElementById(val).className="txtbox";
}

function changeColorSmall(val)
{
	document.getElementById(val).className="txtboxSmallSelect";
}
function resetColorSmall(val)
{
	document.getElementById(val).className="txtboxSmall";
}


function changeColorCmb(val)
{
	document.getElementById(val).className="cmbBoxSelect";
}
function resetColorCmb(val)
{
	document.getElementById(val).className="cmbBox";
}
