function clean(entry)
{
	var regex1, regex2, regex3, regex4
	regex1 = new RegExp("\'")		//single quotes
	regex2 = new RegExp("\"")		//double quotes
	regex3 = new RegExp("\\s+$")	//any and all spaces after begining of line
	regex4 = new RegExp("^\\s+")	//any and all spaces before end of line
	while (regex1.test(entry))
	{
		entry = entry.replace(regex1, "")
	}
	while (regex2.test(entry))
	{
		entry = entry.replace(regex2, "")
	}
	while (regex3.test(entry))
	{
		entry = entry.replace(regex3, "")
	}
	while (regex4.test(entry))
	{
		entry = entry.replace(regex4, "")
	}
	return(entry)
}
