Array.prototype.random = function(limit)
{
if (typeof limit == 'undefined' || limit < 0) limit = 1;
else if (!limit) limit = this.length;
for (var i = 0, source = this, target = new Array(), n = source.length; i < limit && n > 0; i++)
{
do { var index = Math.random(); } while (index == 1);
index = Math.floor(index * n);
target.push(source[index]);
source[index] = source[--n];
}
return target;
}

document.write('<div style="float: right;">');
document.write(new Array(
'<a href="http://www.talenty.pl" target="_blank">Talenty.pl</a>',
'<!-—Poczatek kodu HTML system3--><!-—(Nie można nic wycinac z kodu)--> <a rel="nofollow" href="http://cl.s1.system3.pl/?webid=2B3FA5FA16B9BE44F479438756588644" target="_blank"><img src="http://www.techpedia.pl/reklamy/gfx/rek_neo.png" alt="reklama"></a><img src="http://vl.s1.system3.pl/?webid=2B3FA5FA16B9BE44F479438756588644" align="bottom" width="1" height = "1" border="0" hspace="1" alt="" ><!-—Koniec kodu HTML system3-->'
).random().join(''));
document.write('</div><div style="clear: both"></div>');

