// Site specific utility funcions and initialization code.

createCookie('test', 'test');
cookies_supported = readCookie('test');
eraseCookie('test');

if (cookies_supported && (readCookie('screen_width') == null || readCookie('screen_height') == null)) {
    createCookie('screen_width', screen.width)
    createCookie('screen_height', screen.height)
    location = location;
}
