function doTellAFriend(){
	var tellFriendFromSPList = new silverPopList();
    tellFriendFromSPList.setAddrField('username');
    tellFriendFromSPList.setOptIn('tellfriend-optin-checkbox', '3661', '');
	tellFriendFromSPList.setGATracker(tellFriendGATracker);
    var tellFriendToSPList = new silverPopList();
    tellFriendToSPList.setAddrField('friendEmail');
    tellFriendToSPList.setEmail('71864', tellFriendSPListParams + '&from=' + $j('#fromName').val() + '&msg=' + $j('#linkmessage').val());
    tellFriendToSPList.setGATracker(tellFriendGATracker);
    tellFriendToSPList.setOnEmailSubmit(function(){
    	$j.ajax({	type:'POST', 
					url:'/Shop', 
					data:getFormData('tell-a-friend-form', '', '', 'false', 'true'), 
					complete:function(originalRequest) {
						$j('.formShow').fadeOut('slow', function(){ $j('.successShow').fadeIn('slow'); });
					}
				});
		});
	tellFriendFromSPList.doListSubmit();
	tellFriendToSPList.doListSubmit();
}
      	  	
function resetTellAFriend(){
	$j('#linkmessage').val('Check out this really cool item I found at Fetchdog.com!');
	$j('#friendEmail').val('');
	$j('.successShow').fadeOut('slow', function(){ $j('.formShow').fadeIn('slow'); });
}