/* ### SVN-ID : $HeadURL: svn://svn.empolis.com/server/src/svn/pxceshop/trunk/pxc45/src/assets/js/tools.js $, $Revision: 12288 $, $Date: 2010-02-03 15:26:18 +0100 (Śr, 03 lut 2010) $ ###*/

function escapeHTMLEntities(text) {
    text = text.replace(/&szlig;/g, '%DF');
    text = text.replace(/&auml;/g, '%E4');
    text = text.replace(/&ouml;/g, '%F6');
    text = text.replace(/&uuml;/g, '%FC');
    text = text.replace(/&euml;/g, '%EB');
    text = text.replace(/&Auml;/g, '%C4');
    text = text.replace(/&Ouml;/g, '%D6');
    text = text.replace(/&Uuml;/g, '%DC');
    text = text.replace(/&Euml;/g, '%CB');

    return text;
}


