function highlightFields()
{
	try
	{
		var fldType;
		for (x=0;x<document.forms.length;x++)
		{
			for(i=0; i<document.forms(x).elements.length; i++)
			{
				fldType = document.forms(x).elements[i].type 
				if(fldType=="text" || fldType=="password" || fldType=="textarea" || fldType=="file")
				{
					if(document.forms(x).elements[i].readOnly==false)
					{
						attachBorderAndSelect(document.forms(x).elements[i].name)
					}
				}
			}
		}
	} catch(e){}
}

function attachBorderAndSelect(id)
{
  var obj0 = document.getElementById(id)
  obj0.onfocus= function() {this.style.border="1px solid #AA1293";}
  obj0.onblur = function() {this.style.border="1px inset #00319C";}
}
