function stripHtml(s)
{
	var matchTag = /<(?:.|\s)*?>/g;
	return s.replace(matchTag, '');
}
