// check string for HTML code
function htmlCodeCheck(str) {
	var regstr = "<[^>]*>"
	var reg = new RegExp(regstr)
	return str.search(reg)
}

