function storeScreenWidth() {
	var width = screen.width;
	writeCookie("screenWidth", width, 31);
}

addEvent(window, 'load', storeScreenWidth);