$(document).ready(function()
{
    var new_html = '<div id="hiddenModalContent" style="display: none;"><div><div id="popup_content"></div>';
    new_html += '<p style="margin: 0; padding-top: 15px; clear: both; text-align: center; font-size: 11px;"><a href="#" onclick="tb_remove(); return false;">Close this notification</a></p>';
    new_html += '</div></div>';
    $('body').append(new_html);
}
);

function write_popup_content(html) {
    $('#popup_content').html(html);
}

function autopost_complete()
{
  show_popup('Successfully Posted!', 'Your voice player has been added to your page. Let your friends know they can leave you voice comments!');
}

function copy_complete()
{
  show_popup('Codes Copied!', 'Your code has been copied. Go to your profile edit page and paste. Let your friends know they can leave you voice comments!');
}


function show_popup(title, msg)
{
  var popup_html = '<div style="padding-top: 5px; font-weight: bold; font-size: 13px;">' + msg + '</div>';
  popup_html += '<div style="padding-top: 15px; font-size: 11px; color: #444;">Now check out this new service from our friends at WhitePages:</div>';
  popup_html += '<div style="margin: 0; padding-top: 14px; line-height: 1.5; font-size: 12px; color: #444;"><a href="http://www.whitepages.com/snapvine/getlisted" target="_blank" onclick="safeUrchinTracker(\'/gadget/get_codes_lt_state_get_listed_clicked\');" ><img src="/images/ads/get_listed_410x200.gif" alt="Get Listed on WhitePages" style="float: left; margin-right: 7px;" /></a>';
  write_popup_content(popup_html);
  tb_show(title, '#TB_inline?height=360&width=420&inlineId=hiddenModalContent', null);
}