function makeFancyTextBox( id, text )
{
	if( document.getElementById( id ) == null ) return;

	document.getElementById( id ).value = text;
	//alert( document.getElementById( id ) );
	document.getElementById( id ).text = text;
	document.getElementById( id ).onfocus = function()
	{ 
		if( this.value==this.text )
			this.value=""; 
	}
	document.getElementById( id ).onblur = function()
		{
			if( this.value=="" )
				this.value = this.text;
		}
}