function SendMSNMessage(name)
{
 //Send a message through MSN , only for IE
 //and you must have installed MSN or Window Message
 MsgrObj.InstantMessage(name); 
}
function AddMSNContact(name)
{
 //Add a people to MSN , only for IE
 //and you must have installed MSN or Window Message
 MsgrObj.AddContact(0, name);
}