// 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) {
	if ( document.getElementById(mezo).value ) document.getElementById(mezo).style.backgroundColor="#bbdd66";
	if ( !document.getElementById(mezo).value ) document.getElementById(mezo).style.backgroundColor="#FF8888";
}
