function initSendtoFriend() {
	var el = $('sendtofriend');
	if (!el) { return false; }

	el.onclick = function() {
			return popThis(this);
	}
}
window.addEvent('domready', initSendtoFriend);

function popThis(WhichURL) {
	var URL = WhichURL.getAttribute("href");
	window.open(URL,"popup","width=546,height=480,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no");
	return false;
}