function eWebEditor_DecodeFilter(html){
var hh="http://info.printing.hc360.com/PicnewsList/";
var hd="http://www.printing.hc360.com/";
html=eWebEditor_execRE(hh,hd,html);
return html;
}
function eWebEditor_execRE(re, rp, content) {
oReg = new RegExp(re, "ig");
r = content.replace(oReg, rp);
return r;
}