function forFriend(pid, encodeduri) {
	var uri = 'ajax/tellfriend.php?pid='+pid+'&uri='+encodeduri
	//alert(uri);
	if(document.getElementById('contactperson')==null){
		var parentDiv=jQuery(document.createElement("div"));
		parentDiv.attr("class","jqmWindow");
		parentDiv.attr("id",'contactperson');
		
	}
	jQuery('body').append(jQuery('#contactperson'));
	jQuery('#contactperson').jqm({ajax:uri});
	jQuery('#contactperson').jqmShow();


}


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;
}
