/*
Copyright © 2010  Kyle Davis <anthem1@gmail.com>
*/

function EncodeHTML(value) {
 value = value.replace(/&/g, '&amp;');
 value = value.replace(/</g, '&lt;');
 value = value.replace(/>/g, '&gt');
 return value;
}

