function simpleShareDraugiem(title, url, titlePrefix){
	var left   = (screen.width  - 530)/2;
	var top    = (screen.height - 400)/2;
 
	window.open(
		'http://www.draugiem.lv/say/ext/add.php?title=' + title + '&link=' + url + '&titlePrefix=' + titlePrefix,
		'',
		'location=1,status=1,scrollbars=0,resizable=0,width=530,height=400,left=' + left + ',top=' + top
	);
	
	return false;
}

function simpleShareTwitter(title, url){
	var left   = (screen.width  - 530)/2;
	var top    = (screen.height - 400)/2;
	
	window.open(
		'http://twitter.com/share?url=' + url + '&text=' + title,
		'',
		'location=1,status=1,scrollbars=0,resizable=0,width=530,height=400,left=' + left + ',top=' + top
	);
	
	return false;
}

function simpleShareFacebook(title, url){
	var left   = (screen.width  - 530)/2;
	var top    = (screen.height - 400)/2;
	
	window.open(
		'http://www.facebook.com/sharer.php?u=' + url + '&t=' + title,
		'',
		'location=1,status=1,scrollbars=0,resizable=0,width=530,height=400,left=' + left + ',top=' + top
	);
	
	return false;
}

