function highlight() {
	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].getAttribute('type')=="file") {
		 elements[i].onfocus=function() {
		   /*this.style.borderColor='#5789C6';*/
		   this.style.backgroundColor='#FFFFD1';
		 };
		 elements[i].onblur=function() {
		   /*this.style.borderColor='#AABBCC';*/
		   this.style.backgroundColor='';
		};

	  }
	}

	var elements = document.getElementsByTagName("textarea");
	for (i=0; i < elements.length; i++) {
	   /*if(elements[i].getAttribute('type')=="text") {*/
		 elements[i].onfocus=function() {
		   /*this.style.borderColor='#5789C6';*/
		   this.style.backgroundColor='#FFFFD1';
		 };
		 elements[i].onblur=function() {
		   /*this.style.borderColor='#AABBCC';*/
		   this.style.backgroundColor='';
		};

	  /*}*/
	}

	var elements = document.getElementsByTagName("select");
	for (i=0; i < elements.length; i++) {
	   /*if(elements[i].getAttribute('type')=="text") {*/
		 elements[i].onfocus=function() {
		   /*this.style.borderColor='#5789C6';*/
		   this.style.backgroundColor='#FFFFD1';
		 };
		 elements[i].onblur=function() {
		   /*this.style.borderColor='#AABBCC';*/
		   this.style.backgroundColor='';
		};

	  /*}*/
	}
}

window.onload = highlight; 