function greeting(r,img,l)
{
	if (l == 'fa') txt = "ارساف بصنرت ارت ستاف";
	else txt = 'Send as a Greeting Card';
	document.write('<table border=0 width=135 id="greetS" cellspacing=0>' +
	               '<tr><td nowrap>' +
				   '<a href="javascript:" onclick="JavaScript:sendcard(\''+r+'\',\''+img+'\',\''+l+'\')" onmouseover="return true" >' + txt + '</a>' +
	               '</td></tr>' +
				   '</table>');
}

function sendcard(r,img,l)
{
	url = r + 'greeting/' + l + '/?img=' + escape(img);
	window.open(url,'','resizable=no,toolbar=no,scrollbars=yes,width=615,height=550,top=15,left=80');
}

function greetingLink(r,l)
{
	if (l == 'fa') txt = "ارساف ارت ستاف";
	else txt = 'Send a Greeting Card';
	document.write('<table border=0 width=110 id="greetS" cellspacing=0>' +
	               '<tr><td nowrap>' +
				   '<a href="' + r + 'gallery/'+l+'" target="_blank">' + txt + '</a>' +
	               '</td></tr>' +
				   '</table>');
}

