threep comes in with a hunka code, and slaps it right in:
"here fellas, whaddaya think of this?
and do you get what it does?
heh - i should change the function names to useless names, to make life a little more difficult!"
<BLOCKQUOTE><FONT face="Verdana, Arial">code:</font><HR><pre>
var cookieString = ""
getCookie();
function getCookie() {
cookieString = document.cookie;
cookieArray = cookieString.split(";");
if(cookieString.length>0) bikkie = new siteCookie(cookieArray);
}
function siteCookie(cookieItems) {
for(i=0; i<cookieItems.length; i++) {
cookieItem = cookieItems[i].split("=");
eval("this." + cookieItem[0] + "= '" + unescape(cookieItem[1]) + "'");
}
}
function saveCookie(cookieName, cookieVal) {
document.cookie = cookieName + "=" + escape(cookieVal);
}
function saveForm(thisForm) {
var saveString = ""
for(i=0;i<thisForm.length; i++) {
if(i>0) saveString += "