//context.js
//Copyright 2007 TABS4CE (tabs4ce.com)
//Author Bob Matlin bmatlin@matlinsoftwareservices.com

//Sets context parameters used by cgi.
//Requires cookieLibrary.js.

//Set this value in the header file for each template.
//Value must be consistent with values expected by Context.pm.
var Context_tpl = 'tabs';

//setCookies()
//
//Call when form is submitted.
function Context_setCookies() {
    SetCookie('tpl',Context_tpl,null,'/','.tabs4ce.com');
    return(true);
}

function Context_setTpl(val) {
    Context_tpl = val;
}