/*function tell(r,url,l)
{
	if (l == 'fa') txt = "معرفي ما به دوستان";
	else txt = 'Tell a friend';
	document.write('<table border=0 width=100 id="tellS">' +
	               '<tr><td nowrap>' +
				   '<a href="javascript:" onclick="JavaScript:gotell(\''+r+'\',\''+url+'\',\''+l+'\')" onmouseover="return true" >' + txt + '</a>' +
	               '</td></tr>' +
				   '</table>');
}
*/
function gotell(r,url,l)
{
	url = r + 'tell/' + l + '/?pageAddr=' + escape(url);
	window.open(url,'tell','resizable=no,toolbar=no,width=300,height=479,top=30,left=225');
}