// vytvorene Adom Liptakom
// od 2011-05-12

function send_click(id)
{
  var u=location.href;
  var t=document.title;
  var mydomain=window.location.href.match(/:\/\/(.[^/]+)/)[1];
  var l = '';
	var w = 626; var h = 600;

  switch (id) {
  	case 'fb': 
  		l = 'http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t);
  		w = 626; h = 436;
  		break;
  	case 'del': 
  		l = 'http://delicious.com/save?v=5&amp;noui&amp;jump=close&amp;url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title)
  		w = 550; h = 550;
  		break;
  	case 'g': 
  		l = 'http://www.google.com/bookmarks/mark?op=add&bkmk='+encodeURIComponent(u)+'&title='+encodeURIComponent(t);
  		w = 826; h = 536;
  		break;
  	case 'myspc': 
  		l = 'http://www.myspace.com/Modules/PostTo/Pages/?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t)+'&c='+encodeURIComponent(t);
  		break;
  	case 'twit': 
  		l = 'http://www.twitter.com/home?status='+u;
  		break;
  	case 'friend': 
  		l = 'http://'+mydomain+'/?str=906&subaction=form&URL='+encodeURIComponent(u);
  		w = 750; h = 450;
  		break;
	}
  if (l) window.open(l, 'art_poslite_'+id, 'toolbar=0,status=0,width='+ w +',height='+h);
  return false;
}
