// Form Hints JavaScript Document

function prepare_hints() {
	$$("INPUT,TEXTAREA,SELECT").each(function(inp){
											
		inp.onfocus = function () { 
			if(this.id != undefined){
				show_hint(this.id);
			}
		}
	
		inp.onblur = function () { 
			if(this.id != undefined){
				hide_hint(this.id);
			}
		}	
	
	});	
}

function show_hint(id){
	if(id.length > 0){
		$$("DIV[title="+id+"]").each(function(sp){
			sp.style.display = 'block';
		});
	}	
}

function hide_hint(id){
	if(id.length > 0){
		$$("DIV[title="+id+"]").each(function(sp){
			sp.style.display = 'none';
		});
	}	
}
