/**
 * @author aelvan
 */

function share(w, u, t) {
	var completeUrl =  encodeURIComponent('http://' + location.host + u);
	if (w == 'facebook') {
  	window.open('http://www.facebook.com/sharer.php?u=' + completeUrl + '&t=' + escape(t), 'sharer', 'toolbar=0, status=0, width=626, height=436');
  	return false;
  } else if (w=='twitter') {
  	window.open('http://twitter.com/home?status=' + encodeURIComponent(t + ' - ') + completeUrl, 'sharer', '');
  	return false;
	} 
}

