
function setDocTitle(){
  var title = document.getElementsByTagName("H2")[0];
  if (title) {
    document.title = title.innerHTML;
    document.getElementById("titlemeta").content =title.innerHTML;
  }
}

function loadIframe() {
  var new_iframe = document.createElement('iframe');
  new_iframe.src = "http://www.momsrising.org/widgets/shareWidget.php?title=" + 
    encodeURIComponent(document.title) + '&url=' + encodeURIComponent(location.href);
  new_iframe.frameBorder = '0';
  new_iframe.scrolling = 'no';
  new_iframe.height='360';
  new_iframe.width='140';
  document.getElementById('iframediv').appendChild(new_iframe);
}

function ak_loadIframe() {
  var new_iframe = document.createElement('iframe');
  new_iframe.src = "http://www.momsrising.org/widgets/ak_shareWidget.php?title=" + 
    encodeURIComponent(document.title) + '&url=' + encodeURIComponent(location.href);
  new_iframe.frameBorder = '0';
  new_iframe.scrolling = 'no';
  new_iframe.height='360';
  new_iframe.width='140';
  document.getElementById('iframediv').appendChild(new_iframe);
}

function loadIframeFromId(pageid) {

  var url = "https://action.momsrising.org/cms/view_by_page_id/" + pageid;
  var new_iframe = document.createElement('iframe');
  new_iframe.src = "http://www.momsrising.org/widgets/shareWidget.php?title=" + 
    encodeURIComponent(document.title) + '&url=' + encodeURIComponent(url);
  new_iframe.frameBorder = '0';
  new_iframe.scrolling = 'no';
  new_iframe.height='360';
  new_iframe.width='140';
  document.getElementById('iframediv').appendChild(new_iframe);
}
