// <![CDATA[
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;
}
function kontakty_reklama() {
document.write(new Array(
// Tu wpisz kolejne elementy:
"Arkadiusz Gnat tel. 0 602 107 700 <A href='mailto:agnat@e-budownictwo.pl'>agnat@e-budownictwo.pl</A><BR>",
"Anna Makowska tel. 0 606 870 700 <A href='mailto:amakowska@e-budownictwo.pl'>amakowska@e-budownictwo.pl</A><BR>",
"Ewelina Janocha tel. 0 602 332 696 <A href='mailto:ejanocha@e-budownictwo.pl'>ejanocha@e-budownictwo.pl</A><BR>",
"Ewa Wojciechowska tel. 0 604 521 321 <A href='mailto:ewojciechowska@e-budownictwo.pl'>ewojciechowska@e-budownictwo.pl</A><BR>"
).random(4).join('')); //cyfra oznacza ilość wyświetlanych elementów
}
// ]]>
