<!--- Javascript --->
function cOn(td,c){
	if(document.getElementById||(document.all && !(document.getElementById))){
	td.style.backgroundColor=c;
	}
	}
	
function cOut(td,c){
	if(document.getElementById||(document.all && !(document.getElementById))){
	td.style.backgroundColor=c;
	}
	}
	
function elem_len(f,elem){
	var e_len = document.forms[f].elements[elem].value.length;
	var result = true;
	if (e_len <= 0){
		result = false;
		}
	return result;
	return e_len;
	}
