function share(pageUrl,pageTitle,id) {
	var url = pageUrl || document.URL;
	var title = pageTitle || document.title;
	var id = id || '';
	var fbUrl = encodeURI(url);
	var fbTitle = encodeURI(title);

document.getElementById('share'+id).innerHTML = '<div style="float:left;width:28px;">'+
	'<g:plusone size="small" count="false" href="'+url+'"></g:plusone>'+
	'</div>'+
	'<a class="fb" href="#" onclick="window.open(\'http://www.facebook.com/sharer.php?u='+fbUrl+'&t='+fbTitle+'\',\'sharer\',\'toolbar=0,status=0,width=626,height=436\');return false;">FB</a>'+
	'<a class="twitter" href="#" onclick="window.open(\'https://twitter.com/share?url='+fbUrl+'&text='+fbTitle+'&via=VANSrebeljam\',\'sharer\',\'toolbar=0,status=0,width=550,height=500\');return false;">Twitter</a>';

}


