// JavaScript Document by Walter Matyas @ theMMedia.com 2009


<!-- Highlite the input and textarea -->

function hilite(obj) {
	obj.style.background-color = '#FFFF66';
}

function delite(obj) {
	obj.style.background-color = '#FFFFEE';
}

