/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function txtthis(message, contentUrl, contentType) {    
    var url = window.location.href;
    var type = "News";

    if(contentUrl)
        url = contentUrl;
    if(contentType)
        type = contentType;

    var ttUrl = "http://www.mytxtbuddy.com/txtthis/login_TT.html?u="+url+"&hl="+escape(message)+"&t="+escape(type);
    
    document.write("<img src='http://www.mytxtbuddy.com/txtthis/images/TXTthis_logo_66x22.jpg' style='cursor:pointer' onclick='openWindow(\""+ttUrl+"\");' />");
}

function openWindow(url){
    window.open(url, "myWindow", "status=1,height=470,width=300,resizable=no");
}