// onLoad at end of page load. Add onLoad functions here
var oldEvt = window.onload; 
window.onload = function() 
{
	geo();
	if (oldEvt) {
		oldEvt(); 
	}
}

	window.clickClear = function(
		color)
    {
        if (this != null)
        {
            if (this.value == this.defaultValue)
            {
                this.value = '';

                if (!color)
                {
                    color = '666666';
                }

                this.style.color = (
					'#' +
					color);
            }
        }
    };

    window.clickRecall = function(
		color)
    {
        if (this != null)
        {
            if (this.value == '')
            {
                this.value = this.defaultValue;

                if (!color)
                {
                    color = '666666';
                }

                this.style.color = (
					'#' +
					color);
            }
        }
    };

