
function urlUnescape(urlToUnescape) {
return urlToUnescape.replace(/&amp;/g,'&');
}
function printField() {
var s = document.getElementById("formtextprint").innerHTML;
var regExp=/\n/gi;
s = s.replace(regExp,'<br />');
pWin = window.open('','pWin','location=yes, menubar=yes, toolbar=yes');
pWin.document.open();
pWin.document.write('<html><head></head><body>');
pWin.document.write(s);
pWin.document.write('</body></html>');
pWin.print();
pWin.document.close();
pWin.close();
return;
}
