function reg_ellenoriz(bigyo) {
	var text = document.getElementById(''+bigyo);
	if (text.value !='') {
		text.style.background = '#ffffff';
		text.style.color = '#253F5F';
	} else {
		text.style.background = '#ff0000';
		text.style.color = 'white';
	}
}

