// JavaScript Document
function OnFocus(input){
	input.style.backgroundColor='#D9DA96';
}

function OutFocus(input){
	input.style.backgroundColor='white';
}