function originalFormFieldValues() {
	var path = document;
	if (!path.getElementById) { return; }
	var fields= originalFormFieldValues.arguments;
	for (var i = 0; i<fields.length; i++) {
		field = path.getElementById(fields[i]);
		if (field) {
			field.defaultValue = field.value;
			field.onfocus	= resetField
			field.onblur	= emptyField
		}
	}
}

function resetField() {
	if (this.value == this.defaultValue) {
		this.value = "";
		}
}

function emptyField() {
	if (empty(this.value)) {
		this.value = this.defaultValue;
		}
	this.blur();
}

function empty(content) {
	var noContent = /^\s*$/
	return noContent.test(content)
}

function initialize() {
	preload();
	originalFormFieldValues('email');
}

function noSpamToUs(name,wwwAddress, topic) {
   document.location = "mailto:" + name + "@" + wwwAddress + "?subject=" + topic;
}

window.onload = initialize;