function setCompID(deptcode){
storeCookie('DeptNum', deptcode, null, '/', INET_DOMAIN, null);
}
function setCompPwd(pwd){
storeCookie('DeptCA', pwd, null, '/', INET_DOMAIN, null);
}
function setHomeDir(dir){
storeCookie('HomeDir', dir, null, '/', INET_DOMAIN, null);
}
function setRefMandatory( isMandatory ){
storeCookie( 'RefMandatory', isMandatory, null, '/', INET_DOMAIN, null );
}
function storeRadio(cookiename, value){
storeCookie(cookiename, value, null, '/', null, null);
}
function setDeptNumVal(frm){
var CookieVal=readCookie('DeptNum');
if(CookieVal!=null){
frm.DK02_USERDEPT.value=CookieVal;
}
}
function setDeptPwdVal(frm){
var CookieVal=readCookie('DeptCA');
if(CookieVal!=null){
frm.DK02_USERDEPTPASS.value=CookieVal;
}
}
function setKPTD_settings( settingsString ){
storeCookie( 'KPTD_settings', settingsString , null, '/', null, null );
}
function setHasAccessToAlertReview( hasAccessString ){
storeCookie( 'HasAccessToAlertReview', hasAccessString , null, '/', null, null );
}


