function Webmail()
{
   
    

}


Webmail.Send = function(mail)
{    
    Baris.Portal.WebmailService.Send(mail,Webmail.SucceedCallback);
}


Webmail.SucceedCallback = function(result)
{
	if( result.OK == false )
		alert(result.Message);
	else
	    alert("OK");
}




