function cntInputFocus(input){
	input.style.backgroundColor='#FFFFFF'; input.style.color='#000000';
}
function cntInputFocus2(){
	this.style.backgroundColor='#FFFFFF'; this.style.color='#000000';
}
function cntInputBlur(input){
	input.style.backgroundColor='#0053D7'; input.style.color='#FFFFFF';
}
function cntInputBlur2(){
	this.style.backgroundColor='#0053D7'; this.style.color='#FFFFFF';
}
function cntInputBlur3(input){
	input.style.backgroundColor='#0053D7'; input.style.color='#FFFFFF';
}