function tellAFriend(link) {
	/*
	 * 
	 * ugly force of setting the the new product var
	 * 
	 */
	//remove old stuff
	jQuery('#ajaxreplace').html(" ");
	//load page for session context
	jQuery.get(link);
	
	jQuery('#ajaxreplace').load(link.replace("/prod/","/aprod/")+" #tellAFriendModalContent",null, 
	 
			function(data, status, jqXHR) {
				//console.log("innerhlab der anfrage status: "+status);
				
				if (status == "error") {
				    var msg = "Sorry but there was an error: ";
				    alert(msg + jqXHR.status + " " + jqXHR.statusText);
				} else {
					
					//show Thickbox
					tb_show('','#TB_inline?height=550&width=455&inlineId=tellAFriendModalContent&modal=false&fadeIn=500&fadeOut=500', '');
				}
		}
	,"");
		
	
	return false;
}
