addLoadEvent(function() 
{
	// First Name
	document.getElementById('fn').onfocus = function () 
		{
			if (this.value == 'First Name') this.value = '';
		};
	document.getElementById('fn').onblur = function () 
		{
			if (this.value == '') this.value = 'First Name';
		};
	// Last Name
	document.getElementById('ln').onfocus = function () 
		{
			if (this.value == 'Last Name') this.value = '';
		};
	document.getElementById('ln').onblur = function () 
		{
			if (this.value == '') this.value = 'Last Name';
		};
	// Registry Number
	document.getElementById('rn').onfocus = function () 
		{
			if (this.value == 'Registry Number') this.value = '';
		};
	document.getElementById('rn').onblur = function () 
		{
			if (this.value == '') this.value = 'Registry Number';
		};
});