/* AUTHOR: inrasoi@yahoo.com */
/* Generated by AceHTML Freeware http://freeware.acehtml.com */
/* Creation date: 2/28/2005 */

function replace(field)
{
var newstring= field.value;
newstring=newstring.replace(/\'/g,"´");
newstring=newstring.replace("[","<");
newstring=newstring.replace("]",">");
newstring=newstring.replace("[/","</");
field.value=newstring;

}
