﻿//String Cleaning
function cleanInput(str)
{
    return (str.replace("<","")).replace(">","");
}

