- Impact
- 0


function StateSuggestions()
{
var oldCookie = readCookie('search');
var oldCookieArray = new Array();
if (oldCookie != '' && oldCookie.substr(0, oldCookie.indexOf(",")) != '')
{
oldCookieArray = oldCookie.split(',');
this.states = oldCookieArray;
}
else
{
this.states = new Array();
}
};
