%
function prepScreen(text)
{
text = String(text)
text = text.replace(//g, ">");
text = text.replace(/\n/g, "
");
if (text == "null" || text == "undefined")
text = "";
return text;
}
function prepScreenHtml(text)
{
text = String(text)
text = text.replace(/\n/g, "
");
if (text == "null" || text == "undefined")
text = "";
return text;
}
%>