function sharePop(url, width, height, name) {
	testwindow= window.open(url, name, "location=1,status=1,scrollbars=1,resizable=1,width=" + width + ",height=" + height);
}

function shareFacebook(url, title) {
	sharePop('http://www.facebook.com/sharer.php?u='+encodeURIComponent(url)+'&t='+encodeURIComponent(title), 850, 500, 'facebookPopup');
}

function shareTwitter(url) {
	sharePop('http://twitter.com/home?status=Iesaku '+encodeURIComponent(url), 800, 400, 'twitterPopup');
}

function shareLiveJournal(url, title) {
	sharePop('http://www.livejournal.com/update.bml?event='+encodeURIComponent(url)+'&subject='+encodeURIComponent(title), 850, 500, 'liveJournalPopup');
}
function DraugiemSay( title, url, titlePrefix ){
 window.open(
  'http://www.draugiem.lv/say/ext/add.php?title=' + encodeURIComponent( title ) +
  '&link=' + encodeURIComponent( url ) +
  ( titlePrefix ? '&titlePrefix=' + encodeURIComponent( titlePrefix ) : '' ),
  '',
  'location=1,status=1,scrollbars=0,resizable=0,width=530,height=400'
 );
 return false;
}


