function cleanupkeyword(str) {
	str = str.toLowerCase();
	str = str.replace("&","");
	return str;
}
