function highlight() {
	var ebstyle = 'solid';
	var ebwidth = '1';
	var ebcolor = '#7f9db9';
	var ebgColor = '#ffffff';
	var ebcolorActive = '#31824c';
	var ebgColorActive = '#ecfee1';
	var epaddingLR = '2px';
	var eheight = '20px';
	var ewidth = '200px';
	
	var elements = document.getElementsByTagName('input');
	
	for (i=0; i < elements.length; i++) { 
		if(elements[i].getAttribute('type')=='text' || elements[i].getAttribute('type')=='password') {
			//elements[i].style.borderWidth=ebwidth;
			//elements[i].style.borderStyle=ebstyle;
			//elements[i].style.borderColor=ebcolor;
			//elements[i].style.backgroundColor=ebgColor;
			//elements[i].style.paddingLeft=epaddingLR;
			//elements[i].style.paddingRight=epaddingLR;
			//elements[i].style.width=ewidth;
			//elements[i].style.height=eheight;
			elements[i].onfocus=function() {
				this.style.borderColor=ebcolorActive;
				this.style.backgroundColor=ebgColorActive;
			};
			elements[i].onblur=function() {
				this.style.borderColor=ebcolor;
				this.style.backgroundColor=ebgColor;
			};
		}
	}
}
