 function status_komunikatora (typ,id,img) { var data = new Date(); var adres = ""; switch (typ) { case "gg": adres="http://status.gadu-gadu.pl/users/status.asp?id="+id+"&"+data.getTime(); break; case "skype": document.getElementById (img).src="/static,image,ikona_skype.png"; adres="http://mystatus.skype.com/smallicon/"+id; break; case "spik": adres="http://spik.wp.pl/status.html?login="+id+"&styl=0&"+data.getTime(); break; case "tlen": adres="http://status.tlen.pl/?u="+id+"&t=1&"+data.getTime(); adres="/static,image,ikona_tlen.gif"; break; } document.getElementById (img).src=adres; setTimeout ("status_komunikatora ('"+typ+"','"+id+"','"+img+"')",15000); } 
