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);
}
function skypeCheck() {
    if(CantDetect) {
        return true;
    } else if(!activex) {
        var skypeMime = navigator.mimeTypes["application/x-skype"];
        detected = true;
        if(typeof(skypeMime) == "object") {
            return true;
        } else {
            return oopsPopup();
        }
    } else {
        if(isSkypeInstalled()) {
            detected = true;
            return true;
        }
    }
    
    detected = true;
    return oopsPopup();
}