
// For form elements: Focus text
function showText(el, text){
	if (el && text != null)
	{
		if (el.value == "") el.value = text;

		$(el).bind("focus",function(){
			if (el.value == text) el.value = ""
		});

		$(el).bind("blur",function(){
			if (el.value.length == 0) el.value = text;
		})
	}
}


