window.onload = function() {
	if (document.getElementById) {
		var sendlink = document.getElementById('sendtofriend');
		sendlink.onclick = function() {
			window.open(this.href,'popup','width=400,height=430,scrollbars=yes');
	        return false;
		}
	}
}