function createSocialIcons(url, title, extCssClass,text)
{
	url=encodeURIComponent(url);
	title=encodeURIComponent(title);
	if(text == undefined)
	{
		text = '';
	}
	document.write('<div id="socialIcons" class="'+extCssClass+'">'+text);
	document.write('<span class="iconsPanel">');
	document.write('<a class="facebook" href="http://www.facebook.com/sharer.php?u='+ url +'&t='+title+'" title="Dodaj na facebook.com" onclick="this.target=\'_blank\'" rel="nofollow">&nbsp;</a>'+
					'<a class="twitter" href="http://twitter.com/home?status='+title+' - '+url+'" title="Dodaj na twitter.com" onclick="this.target=\'_blank\'" rel="nofollow">&nbsp;</a>'+
					'<a class="sledzik" href="http://nasza-klasa.pl/sledzik?shout='+title+' - '+url+'" title="Dodaj na śledzik" onclick="this.target=\'_blank\'" rel="nofollow">&nbsp;</a>'+
					'<a class="blip" href="http://blip.pl/dashboard?body='+ url +' '+ title +'" title="Dodaj na blip.pl" onclick="this.target=\'_blank\'" rel="nofollow">&nbsp;</a>'+
					'<a class="flaker" href="http://flaker.pl/add2flaker.php?url=' +url+ '&title=' +title+ '" title="Dodaj na flaker.pl" onclick="this.target=\'_blank\'" rel="nofollow">&nbsp;</a>'+
					'</span></div>');
}
