//from instructions found at http://www.hidaho.com/cookies/cookie.txtfunction picturename (value) {expires=null;path="/";domain=null;secure=null;  document.cookie = "picture" + "=" + escape (value) +    ((expires) ? "; expires=" + expires.toGMTString() : "") +    ((path) ? "; path=" + path : "") +    ((domain) ? "; domain=" + domain : "") +    ((secure) ? "; secure" : "");	window.location="bigpicture.htm";}
