// JavaScript Document
function putTwitter() {
    f = 'http://cool.yam.com/update.aspx?mbtype=twitter&url=' + encodeURIComponent(window.location.href) + '&title=' +
    encodeURIComponent(document.title) + '&channel=mom' + '&v=5&';
    a = function() {
        if (!window.open(f + 'noui=1&jump=doclose', 'yam', 'location=yes,links=no,scrollbars=no,toolbar=no,width=430,height=310')) location.href = f + 'jump=yes'
    };
    if (/Firefox/.test(navigator.userAgent)) { setTimeout(a, 0) }
    else { a() }
}

function putPlurk() {
    f = 'http://cool.yam.com/update.aspx?mbtype=plurk&url=' + encodeURIComponent(window.location.href) + '&title=' +
    encodeURIComponent(document.title) + '&channel=mom' + '&v=5&';
    a = function() {
        if (!window.open(f + 'noui=1&jump=doclose', 'yam', 'location=yes,links=no,scrollbars=no,toolbar=no,width=430,height=310')) location.href = f + 'jump=yes'
    };
    if (/Firefox/.test(navigator.userAgent)) { setTimeout(a, 0) }
    else { a() }
}

function putFacebook() {
    f = 'http://www.facebook.com/share.php?u=' + encodeURIComponent(window.location.href) + '&t=' + encodeURIComponent(document.title);
    a = function() {
        if (!window.open(f, 'yam', 'toolbar=0,status=0,width=626,height=500')) location.href = f + 'jump=yes'
    };
    if (/Firefox/.test(navigator.userAgent)) { setTimeout(a, 0) }
    else { a() }
}
