- Impact
- 0


function StateSuggestions() {
var oldCookie=readCookie('search');
if (oldCookie != '') {
var oldCookieArray = new Array();
*oldCookieArray = oldCookie.split(',');*
this.states = oldCookieArray;
} else {
document.write("Empty!");
}
};
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();
}
};


