another member of your staff fixed the problem for me
if any other forums need it this it the coding
<script>
var logouttimer = 60; //change to value you want
var curcookie = xGetCookie("password");
var days_fraction = logouttimer / (24*60);
xSetCookie('password',curcookie,days_fraction);
setTimeout("handleTimeoutDisconnect()",logouttimer*60*1000);
function handleTimeoutDisconnect(){
var doreconnect = confirm(xobor.plugin('autologout').getConf('logoutinfo'));
if(doreconnect){
xSetCookie('password',curcookie,days_fraction);
}
}
</script>