function wykopTo() {
	location.href='http://www.wykop.pl/dodaj?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)+'&desc='+encodeURIComponent(document.getSelection?document.getSelection():document.selection.createRange().text);
}

function recommendThis() {
	showRecommendationDialog();
}

function printArticle() {
	var oldUrl = location.href;
	var newUrl;
	if (oldUrl.indexOf('?') == -1) {
		newUrl = oldUrl + '?print=true';
	} else {
		newUrl = oldUrl + '&print=true';
	}
	location.href = newUrl;
}