$(function(){
		
		$("#tellFriend").dialog({autoOpen:false, title:"Tell Friend"});
		
		//TellFreind Button clicked
		$("#btnSubmitTellFriend").click(function(){
			{    
				//Getting variable
				var remail =  $("#remail").val();
				var semail = $("#semail").val();
				var comment = $("#commentF").val();
				var rlink = window.location.href;
                var _host;
                _host = window.location.protocol + '//' + window.location.hostname;
                
				$.ajax({
					url:  _host + "/mailToFriend.php",
					type: "post",
					data: {"remail":remail,"semail":semail, "comment":comment,"link":rlink},
					success: function (data)
					{
						if (data == "1")
						{
							$("#tellFriend").dialog("close");
							alert("Successfully sended");
						} else
						{
							alert("Failed");
						}
					}
				});				
			}
		});
	});
	
	function tellF()
	{
		$("#tellFriend").dialog("open");
		//alert($("#tellFriend").dialog("open"));
		
		//Clear previous value
		$("#remail").val("");
		$("#semail").val("");
		$("#commentF").val("");	
		
		//$("#btnTellFriend").click();
	}
