function set_secondary_color (color) { writeCookie('17-secondary', 'sec_' + color); document.body.className="sec_" + color; } function set_primary_color (color) { writeCookie('17-primary', 'pri_' + color); getByID('primary_color').className="pri_" + color; } // Useful for creating a pop-up notification of some sort function newWindow(url, name, width, height) { var newwin = window.open(url,name, (width ? 'width=' + width + ',' : '') + (height ? 'height=' + height + ',' : '') + 'resizable=yes, titlebar=no,toolbar=no,location=no,scrollbars=yes,status=no'); newwin.focus(); return newwin; }