
function CharValidation(str)
{var vre;var vstr=str;vre=/'/g;vstr=vstr.replace(vre,"");vre=/"/g;vstr=vstr.replace(vre,"");return vstr;}