﻿// Created by uWeb, site: wc3fun.ru.
// 01.02.10

// cookies
function cookieSet(a,b,c){if(c){var d=new Date();d.setTime(d.getTime()+(c*24*60*60*1000));var e="; expires="+d.toGMTString()}else{var e=""}document.cookie=a+"="+b+e+"; path=/"};function cookieGet(a){var b=a+"=";var d=document.cookie.split(';');for(var i=0;i<d.length;i++){var c=d[i];while(c.charAt(0)==' ')c=c.substring(1,c.length);if(c.indexOf(b)==0)return c.substring(b.length,c.length)}return null}
// LastPage
$(document).ready(function(){var a=cookieGet('lastpage');$('.lastpage').html(a?'<a href="'+a.split('|')[0]+'" title="'+unescape(a.split('|')[1])+'">'+unescape(a.split('|')[1])+'</a>':'Нет данных...');cookieSet('lastpage',location.href+'|'+escape(document.title),365)});
