/**
* Reformats special chars typically found when copying and pasting from Word.
*
* @param str The string to modify.
* @return Returns a string.
* @author Glen Salisbury (gsalisbury@collegepublisher.com)
* @version 1, October 29, 2001
*/
function ConvertSpecialChars(textin) {
return ReplaceList(textin, "#chr(145)#,#chr(146)#,#chr(147)#,#chr(148)#", "',',"",""");
}
#str_FullNews#