var address = "http://nazolab.net/"; String.prototype.h = function(){ return this
.split('&').join('&amp;')
.split('"').join('&quot;')
.split("'").join('&#039;')
.split('<').join('&lt;')
.split('>').join('&gt;')
;}; String.prototype.nl2br = function(){ var s1 = this; var s2 = ""; while(s1 != s2){ s2 = s1; s1 = s1.replace("\n", "<br>");}
return s1;}; String.prototype.trim = function(){ var s = this; return s.replace(/(^\s+)|(\s+$)/g, "");}

