function bleeto(name, offset) {
	poo = "";
	for (i = 0; i < name.length; i++) {
		poo += String.fromCharCode(name.charCodeAt(i)+offset);
	}
	return poo;
}
//
// I'd like to dedicate this function to all of those spammers out there who 
// scrape emails off of the web.
//
// May you live a karmic life.
//
function doohickey()
{
	var e = "hmen?hnektw-bnl";
	var m = "b!isfg>#nbjmup;";
	e = bleeto(e,1);
	m = bleeto(m,-1);
	document.write("<" + m + e + "\">" + e + "</a>");
}

function clearFormField(w, t)
{
	if (w.value == t) {
		w.value = '';
	}
}

function fillEmptyField(w, t)
{
	if (w.value == '') {
		w.value = t;
	}
}