// Cookie Functions // save/read/delete cookie functions for storing small chunks of data in the browser // 19990326 // Copyright (C) 1999 Dan Steinman // Distributed under the terms of the GNU Library General Public License // Available at http://www.dansteinman.com/dynapi/ // thanks to: Jesee Chisholm function saveCookie(name,value,days) { if (days) { var date = new Date(); date.setTime(date.getTime()+(days*24*60*60*1000)) var expires = "; expires="+date.toGMTString() } else expires = "" document.cookie = name+"="+value+expires+"; path=broadcastamerica.com" } function readCookie(name) { var nameEQ = name + "=" var ca = document.cookie.split(';') for(var i=0;i