
var xmlHttp;

function GetXmlHttpObject()
{
	if (!xmlHttp)
	{
		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");
			}
		}
	}
	else
	{
		xmlHttp.abort();
	}
			
	return xmlHttp;
}
	


function setLoginForm()
{
  if (document.getElementById('strINS').value != '')
  {
    document.getElementById('strINS').removeAttribute('disabled');
    document.getElementById('strINS').style.backgroundColor = '';
    document.getElementById('strATP').setAttribute('disabled','disabled');
    document.getElementById('strATP').style.backgroundColor = '#DEDEDE';
  }
  else if (document.getElementById('strATP').value != '')
  {
    document.getElementById('strATP').removeAttribute('disabled');    
    document.getElementById('strATP').style.backgroundColor = '';
    document.getElementById('strINS').setAttribute('disabled','disabled');
    document.getElementById('strINS').style.backgroundColor = '#DEDEDE';
  }
  else
  {
    document.getElementById('strINS').removeAttribute('disabled');
    document.getElementById('strINS').style.backgroundColor = '';
    document.getElementById('strATP').removeAttribute('disabled');
    document.getElementById('strATP').style.backgroundColor = '';
  }
}

