// JavaScript Document
function focusInput(id){
	document.getElementById(id).style.backgroundColor = '#CCCCCC';
	document.getElementById(id).style.color = '#000000';
}

function blurInput(id){
	document.getElementById(id).style.backgroundColor = '#999999';
	document.getElementById(id).style.color = '#333333';
}