/* Selector Auto Cookie script
   This script will automatically add a cookie to the session in order for the 
   page manager to have something to test to ensure that cookie support is
   enabled.
   
   Requires:
		/ws/j/lib/on-x.js
    /ws/j/lib/cookie.js
*/

addLoadEvent(setTestCookie);

function setTestCookie() {
  setCookie("valid", "ginnel");
} // setTestCookie
