// Created by: BandiBoy
// ZoRaLL.OrG
// www.zorall.org
// GNU Licence
//
// Használata:
// <script src="java/bgcolor.js" language="Javascript" type="text/javascript"></script>
// Cégnév: <input type="text" name="ceg" id="ceg" class="box" onblur="bgcolor('ceg')" onkeyup="bgcolor('ceg')">
function bgcolor(mezo) {
//	myField = document.getElementById(mezo);
//	if ( myField.value == '' ) document.getElementById(mezo).style.backgroundColor="#FF3322";
	if ( document.getElementById(mezo).value ) document.getElementById(mezo).style.backgroundColor="#88FF88";
	if ( !document.getElementById(mezo).value ) document.getElementById(mezo).style.backgroundColor="#FF8888";
}

//function bgcolor() {
//	if ( element.getElementsByTagName('input').value ) element.getElementsByTagName('input').style.backgroundColor="#88FF88";
//	document.getElementsByTagName("input").style.backgroundColor="#88FF88";
//}
