function sendTellFriend() {	
	$.post(
		"/include/com/qla/cust/vmp2008/templates/common/sendToFriend.php?send=1", 
		$("#tellfriendform").serialize(), 
		function(data){
			if ( data ) {
				alert(data);
			} else {
				$("#tellfriendcontainer").hide();
				$("#tellfriend_thx").show();
			}
		}
	);
}

function resetTellFriend() {
	closeLayer('tellfriend');
	$('#tellfriendcontainer').show();
	$('#tellfriend_thx').hide(); 
	
}


