Набор файлов cookie JQuery истекает

У меня есть это:

if (typeof options.expires == 'number') {
date = new Date();
date.setTime(date.getTime() + (options.expires * 5 * 1000));
} else {
date = options.expires;
}
expires = '; expires=' + date.toUTCString();

Как сделать так, чтобы срок действия файлов cookie истек через 10 минут?

Ответы на вопрос(2)

Ваш ответ на вопрос