// JavaScript Document

function doFocus(el){
		var text_form = document.getElementById(el);
		text_form.style.background = "#e2e7f4";
	}
	
function doBlur(el){
		var text_form = document.getElementById(el);
		text_form.style.background = "white";
	}
