function toolboxLoadScript(fileurl, type, callback){
	var tag;
	if(type == 'css'){
		tag = document.createElement("link");
		tag.setAttribute('type', 'text/css');
		tag.setAttribute('rel', 'stylesheet');
	}else if (type == 'js'){
		tag = document.createElement("script");
		tag.setAttribute('type', 'text/javascript');
	}else{
	  return;
	}

	if(callback){
    if (tag.readyState) {
      //IE
      tag.onreadystatechange = function() {
        if (tag.readyState == "loaded" || tag.readyState == "complete") {
          tag.onreadystatechange = null;
          callback();
        }
      };
    } else {
      //Others
      tag.onload = function() {
        callback();
      };
    }
  }

	if(type == 'css'){
		tag.setAttribute('href', fileurl);
	}else{
		tag.setAttribute('src', fileurl);
	}

	if(typeof fileurl!="undefined"){
		document.getElementsByTagName('head')[0].appendChild(tag);
	}
}

function toolboxIsValidZipCode(value) {
   var re = /^\d{5}([\-]\d{4})?$/;
   return (re.test(value));
}

function toolboxAltCorners(header, footer){
  curvyCorners({
      tl: { radius: 8 },
      tr: { radius: 8 },
      antiAlias: true
    }, header );
  curvyCorners({
      bl: { radius: 8 },
      br: { radius: 8 },
      antiAlias: true
    }, footer );
}

function toolboxInitWidget(toolbox_data){
  document.write('<div id="mie-toolbox-wrapper-'+ toolbox_data.toolbox_id +'"></div>');

  toolboxLoadScript(toolbox_data.css_file, 'css');

  // load and init GA when needed
  if( toolbox_data.reports.log == true && toolbox_data.reports.ga.use == true){
    if (typeof(_gat) == 'undefined') {
      toolboxLoadScript('http://www.google-analytics.com/ga.js', 'js', function(){
        toolboxInitGA(toolbox_data);
      });
    } else {
      toolboxInitGA(toolbox_data);
    }      
  }

  if (typeof(jQuery) == 'undefined') {
    toolboxLoadScript(toolbox_data.base_path + '/js/jquery-1.3.2.min.js', 'js', function(){
      toolboxRenderWidget(toolbox_data);
    });
  } else{
    toolboxRenderWidget(toolbox_data);
  }
}

function toolboxInitGA(toolbox){
  gaToolbox = _gat._getTracker(toolbox.reports.ga.code);
  
  // google tracking. track as both page views and events for now
  gaToolbox._trackPageview(toolboxFormatTitle('toolbox', toolbox.toolbox_id, toolbox.toolbox_title));
  gaToolbox._trackEvent('toolbox', 'view', toolboxFormatTitle('toolbox', toolbox.toolbox_id, toolbox.toolbox_title));
  for(var i in toolbox.toolbox_items){
    gaToolbox._trackPageview(toolbox.toolbox_id +'/'+ toolboxFormatTitle('item', toolbox.toolbox_items[i].id, toolbox.toolbox_items[i].title));
    gaToolbox._trackEvent('toolbox-item', 'view',  toolboxFormatTitle('item', toolbox.toolbox_items[i].id, toolbox.toolbox_items[i].title));
  }
}

function toolboxFormatTitle(type, id, title){
  return type +': '+ id +' - '+ title;
}

function toolboxRenderWidget(toolbox_data){
  var toolbox = jQuery('#mie-toolbox-wrapper-' + toolbox_data.toolbox_id);
  toolbox.append(toolbox_data.widget_html);

  if (jQuery.browser.msie && jQuery.browser.version < 7){
    toolboxLoadScript(toolbox_data.base_path + '/js/pngfix.js', 'js');
  }

  // set the content containers width to avoid jumping during animation (also on window resize)
  jQuery('div.mie-toolbox-item-content', toolbox).css('width', jQuery('.mie-toolbox', toolbox).css('width'));
  jQuery(window).resize(function(){
    jQuery('div.mie-toolbox-item-content', toolbox).css('width', jQuery('.mie-toolbox', toolbox).css('width'));
  });

  // need to round corners for all except IE6. Call alt method for IE, else use CSS
  if(toolbox_data.round_corners && !(jQuery.browser.version < 7 && jQuery.browser.msie)){
    if(jQuery.browser.msie || jQuery.browser.opera){
      jQuery(document).ready(function() {
        if (typeof(curvyCorners) === 'function') {
          toolboxAltCorners('#mie-toolbox-wrapper-' + toolbox_data.toolbox_id + ' .mie-toolbox-header', '#mie-toolbox-wrapper-' + toolbox_data.toolbox_id + ' .mie-toolbox-footer');
        } else {
         toolboxLoadScript(toolbox_data.base_path + '/js/curvycorners.js', 'js',
          function(){toolboxAltCorners('#mie-toolbox-wrapper-' + toolbox_data.toolbox_id + ' .mie-toolbox-header', '#mie-toolbox-wrapper-' + toolbox_data.toolbox_id + ' .mie-toolbox-footer');} );
        }
      });
    } else {
      jQuery('div.mie-toolbox-header', toolbox).addClass('mie-toolbox-header-corners');
      jQuery('div.mie-toolbox-footer', toolbox).addClass('mie-toolbox-footer-corners');
    }
  }

  jQuery('div.mie-toolbox-item-header', toolbox).hover(
    function(){
      var visible = (jQuery(this).next().css('display') != 'none');
      jQuery(this).css('background-color', toolbox_data.theme.open_color);
      if(visible){
        jQuery('div.mie-toolbox-item-more-text', this).text(toolbox_data.theme.more_text_close).show();
      } else {
        jQuery('div.mie-toolbox-item-more-text', this).text(toolbox_data.theme.more_text_open).show();
      }
    },
    function(){
      var visible = (jQuery(this).next().css('display') != 'none');
      if(!visible){
        jQuery(this).css('background-color', toolbox_data.theme.closed_color);
      }
      jQuery('div.mie-toolbox-item-more-text', this).html('&nbsp;');
    }
  );

  jQuery('div.mie-toolbox-item-header', toolbox).click(function(){
    var header = jQuery(this);
    var visible = (header.next().css('display') != 'none');
    var more_text = toolbox_data.theme.more_text_close;
    var bgcolor = toolbox_data.theme.open_color;
    if(visible){
      bgcolor = toolbox_data.theme.closed_color;
      more_text = toolbox_data.theme.more_text_open;
      jQuery('img.mie-toolbox-item-more-image', this).attr('src', toolbox_data.base_path + "/images/arrow.png");
    } else {
      jQuery('img.mie-toolbox-item-more-image', this).attr('src', toolbox_data.base_path + "/images/arrow_down.png");
    }
    header.siblings('div.mie-toolbox-item-header').each(function(){
      jQuery(this).css('background-color', toolbox_data.theme.closed_color);
      jQuery('img.mie-toolbox-item-more-image', this).attr('src', toolbox_data.base_path + "/images/arrow.png");
    });
    header.next('div.mie-toolbox-item-content').slideToggle('slow', function(){
      jQuery('div.mie-toolbox-item-more-text', header).text(more_text);
      header.css('background-color', bgcolor);
    }).siblings("div.mie-toolbox-item-content").slideUp("fast");

    // log the click only when opening
    if(!visible && toolbox_data.reports.log == true){
      var item_id = jQuery('input.toolbox-item-id', this).val();
      // google tracking
      if(toolbox_data.reports.ga.use == true){
        gaToolbox._trackEvent('toolbox-item', 'open', toolboxFormatTitle('item', item_id, toolbox_data.toolbox_items[item_id]['title']));
      }
      
      jQuery.ajax({
        type: 'GET',
        url: toolbox_data.host +'/toolbox_reports/item_open/'+ item_id +'/'+ toolbox_data.toolbox_id
      });
    }
  });

  jQuery("form.toolbox_rl_form", toolbox).submit(function() {
    var zip = jQuery("input.toolbox_rl_zip", this).val();
    var results_container = jQuery(this).next('div.toolbox_rl_results');
    if (toolboxIsValidZipCode(zip)) {
      results_container.text("Loading...").show();
      var domain = jQuery("input.toolbox_rl_domain", this).val();
      jQuery.ajax({
        type: 'GET',
        url: 'http://api.thebeehive.org/JSONService/GetResourceCountByCategoryZipWithCallBack',
        data: "language=en&appname=toolbox&CategoryItemId="+ jQuery("input.toolbox_rl_categories", this).val() +"&Region=US&zipcode="+ zip,
        dataType: 'jsonp',
        timeout: 3000,
        success: function(data, textStatus){
          var result = '';
          results_container.text('').hide();
          if(data==0){
            result = 'Please enter a valid 5 digit zip code.';
          } else {
            result = jQuery('<ul />');
            for(i in data){
              var count = 0;
              if(data[i].resourceCount > 0){
                var a = jQuery('<a />')
                  .attr('href', domain + data[i].url)
                  .attr('target', '_blank')
                  .text(data[i].categoryName + ' ('+ data[i].resourceCount +')');

                result.append(jQuery('<li />').append(a));
                count ++;
              }
            }
            if(count == 0){
              result = 'Sorry, we found no results for that zip code.'
            }
          }
          results_container.append(result).fadeIn();
        },
        error: function(XMLHttpRequest, textStatus, errorThrown){
          results_container.text("Sorry, there was a problem: "+ textStatus +".").fadeIn();
        }
      });
      // google tracking
      if(toolbox_data.reports.log == true && toolbox_data.reports.ga.use == true){
        gaToolbox._trackEvent('resource-locator', 'submit', zip);
      }             
    } else {
      results_container.text("Please enter a valid 5 digit zip code.").show().fadeOut(5000);
    }

    return false;
  });

  jQuery('div.mie-toolbox-share-header', toolbox).click(function(){
    var header = jQuery(this);
    var visible = (header.next().css('display') != 'none');
    var more_text = toolbox_data.theme.more_text_close;
    if(visible){
      more_text = toolbox_data.theme.more_text_open;
      jQuery('img', this).attr('src', toolbox_data.base_path + "/images/arrow.png");
      // google tracking
      if(toolbox_data.reports.log == true && toolbox_data.reports.ga.use == true){
        gaToolbox._trackEvent('toolbox', 'share', toolboxFormatTitle('toolbox', toolbox_data.toolbox_id, toolbox_data.toolbox_title));
      }       
    } else {
      jQuery('img', this).attr('src', toolbox_data.base_path + "/images/arrow_down.png");
    }
    header.next('div.mie-toolbox-share-content', toolbox).slideToggle('slow');
  });

  // track item link clicks
  if(toolbox_data.reports.log == true){
    jQuery('div.mie-toolbox-item-content', toolbox).each(function(){
      var item_id = jQuery('input.toolbox-item-id', jQuery(this).prev('div.mie-toolbox-item-header')).val();
      jQuery('a', this).click(function(){
        // google tracking
        if(toolbox_data.reports.ga.use == true){
          gaToolbox._trackEvent('toolbox-item', 'click', 'Link: '+ escape(jQuery(this).attr('href')));
        } 
       
        jQuery.ajax({
          type: 'GET',
          data: 'url='+ escape(jQuery(this).attr('href')),
          url: toolbox_data.host +'/toolbox_reports/link_click/'+ item_id +'/'+ toolbox_data.toolbox_id
        });
      });
    });    

    // track header/footer clicks
    jQuery('div.mie-toolbox-header, div.mie-toolbox-footer', toolbox).each(function(){
      jQuery('a', this).click(function(){
        // google tracking
        if(toolbox_data.reports.ga.use == true){
          gaToolbox._trackEvent('toolbox-theme', 'click', 'Link: '+ escape(jQuery(this).attr('href')));
        }
      
        jQuery.ajax({
          type: 'GET',
          data: 'url='+ escape(jQuery(this).attr('href')),
          url: toolbox_data.host +'/toolbox_reports/link_click/'+ toolbox_data.theme.theme_id +'/'+ toolbox_data.toolbox_id
        });
      });
    });
  }
}var toolbox_data_421 = { "toolbox_id": "421", "toolbox_title": "Haiti Earthquake", "toolbox_items": { "422": { "title": "Help Haiti: Donate $10 by Text Message", "id": "422", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/cellphone.gif\" alt=\"cellphone.gif\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": "All money supports relief work", "body": "\x3cp\x3eYou can help the Red Cross in their efforts to support the people of Haiti.\x3c/p\x3e\r\n\x3cp style=\"text-align: center;\"\x3e\x3cstrong\x3eText the word:\x3cbr\x3e\x26nbsp;\x3cbr\x3e\x3cspan style=\"font-size: 26px  !important;\"\x3eHaiti\x3c/span\x3e\x3cbr\x3e\x3c/strong\x3e\x3c/p\x3e\r\n\x3cbr\x3e\r\n\x3cp style=\"text-align: center;\"\x3e\x3cstrong\x3eto:\x3cbr\x3e\x26nbsp;\x3cbr\x3e\x3cspan style=\"font-size: 20px !important;\"\x3e90999\x3c/span\x3e\x3cbr\x3e\x3c/strong\x3e\x3c/p\x3e" }, "424": { "title": "Find Out About Family", "id": "424", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/embassy.jpg\" alt=\"embassy.jpg\" title=\"Embassy Logo\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": "Contact the US Embassy or the State Department", "body": "\x3cp\x3e\x3cem\x3eFrom \x3ca href=\"http://haiti.usembassy.gov\"\x3ehaiti.usembassy.gov:\x3c/a\x3e\x3c/em\x3e\x3c/p\x3e\r\n\x3cp class=\"Table_Content\"\x3eDuring the Crisis In Haiti, \x3cstrong\x3ecalls\r\nregarding the welfare of U.S. citizens\x3c/strong\x3e can be made to the Embassy’s\r\nConsular Task Force in Port-au-Prince at 509-2229-8942, 509-2229-8089,\r\n509-2229-8322 or 509-2229-8672.\x3c/p\x3e\x3cp class=\"Table_Content\"\x3eThe State Department Operations Center has\r\nset up the following number for Americans seeking information about\r\nfamily members in Haiti: 1-888-407-4747 (due to heavy volume, some\r\ncallers may receive a recording).\x3c/p\x3e\r\n\x3cp\x3eThe Department of State has received a high volume of calls\r\nconcerning the welfare of U.S. citizens in Haiti.\x26nbsp;\x26nbsp; To handle these\r\nrequests most efficiently, the Department has established an e-mail\r\naddress for people who are trying to contact their U.S. citizen friends\r\nand relatives in Haiti.\x26nbsp; \x3c/p\x3e\r\n\x3cp\x3ePlease send your inquiries to:\x26nbsp; \x3ca href=\"mailto:Haiti-Earthquake@State.Gov\"\x3e\x3cspan style=\"text-decoration: underline;\"\x3e\x3cspan style=\"color: #0000ff;\"\x3eHaiti-Earthquake@State.Gov\x3c/span\x3e\x3c/span\x3e\x3c/a\x3e and include the following information:\x3c/p\x3e\r\n\x3cul\x3e\x3cli class=\"Paragraph\"\x3eThe full name, date of birth and passport information (if known) of the persons in Haiti you are trying to contact.\x3c/li\x3e\x3cli class=\"Paragraph\"\x3eTheir contact information in Haiti;\x26nbsp; telephone numbers, email address, hotel name or address (if known)\x3c/li\x3e\x3cli class=\"Paragraph\"\x3eYour name and contact information, and your relationship to the person in Haiti (parent, spouse, friend etc.)\x3c/li\x3e\x3cli\x3e\x3cp\x3eAny special or emergency circumstances. \x3c/p\x3e\x3c/li\x3e\x3c/ul\x3e" }, "428": { "title": "Online Person Finder", "id": "428", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/helpout.gif\" alt=\"helpout.gif\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": "Use this tool to locate people in Haiti", "body": "\x3cp\x3eUse the \x3ca href=\"http://haiticrisis.appspot.com/\"\x3eGoogle Crisis Response application\x3c/a\x3e if you are looking for someone or have information about someone in Haiti.\x3c/p\x3e" }, "427": { "title": "How To Help Right Now", "id": "427", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/ushahidi.gif\" alt=\"ushahidi.gif\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": "Thousands of people in Haiti need assistance", "body": "\x3cp\x3e\x3cem\x3eUshahidi.com has a \x3ca href=\"http://haiti.ushahidi.com/help\"\x3efull list of ways you can help\x3c/a\x3e the people of Haiti right now. Here\'s a sampling:\x3c/em\x3e\x3ca href=\"http://haiti.ushahidi.com/help/view/2\"\x3e\x3c/a\x3e\x3c/p\x3e\x3cp\x3e\x3cstrong\x3e\x3ca href=\"http://haiti.ushahidi.com/help/view/2\"\x3eA list of charitable organizations active in Haiti\x3c/a\x3e\x3c/strong\x3e\x3cbr\x3eFor those in the US interested in helping immediately, simply text \"HAITI\"\r\nto \"90999\" and a donation of $10 will be given automatically to the Red\r\nCross...\x3c/p\x3e\x3cp\x3e\x3cstrong\x3e\x3ca href=\"http://haiti.ushahidi.com/help/view/15\"\x3eHaiti Volunteer Network\x3c/a\x3e\x3c/strong\x3e\x3cbr\x3eThis site provides a platform for people who wish to donate services or\r\ngoods to connect with relief and humanitarian agencies that are helping\r\nHaiti...\x3c/p\x3e\x3cp\x3e\x3cstrong\x3e\x3ca href=\"http://haiti.ushahidi.com/help/view/8\"\x3eI Want 2 Help\x3c/a\x3e\x3c/strong\x3e\x3cbr\x3eUnited Way and The Miami Herald/el Nuevo Herald have activated Operation\r\nHelping Hands to collect donations in response to the catastrophic\r\nearthquake...\x3c/p\x3e\x3cp\x3e\x3cstrong\x3e\x3ca href=\"http://haiti.ushahidi.com/help/view/3\"\x3eYele\x3c/a\x3e\x3c/strong\x3e\x3cbr\x3eYéle Haiti is a grassroots movement that builds global awareness for Haiti\r\nwhile helping to transform the country through programs in education,\r\nsports...\x3c/p\x3e\x3cp\x3e\x26nbsp;\x3c/p\x3e\x3cp\x3eAlso, \x3ca href=\"http://networkforgood.org\"\x3eNetwork for Good\x3c/a\x3e connects donors to dozens of organizations, many of which are directly involved in helping the people of Haiti. \x3c/p\x3e\x3ch2\x3e\x3ca href=\"http://networkforgood.blogspot.com/2010/01/haiti-relief-donate-now.html\"\x3eDonate Now!\x3c/a\x3e\x3c/h2\x3e" }, "433": { "title": "Traveling to Haiti", "id": "433", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/plane0f.gif\" alt=\"plane0f.gif\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": "Information and warnings", "body": "\x3cp\x3eIf you are considering traveling to Haiti, \x3ca href=\"http://travel.state.gov/travel/cis_pa_tw/cis/cis_1134.html\"\x3ehere is information you should know,\x3c/a\x3e from the State Department.\x3c/p\x3e" }, "434": { "title": "The Clinton Bush Haiti Fund", "id": "434", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/haitilogo.gif\" alt=\"haitilogo.gif\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": "Compassion and generosity", "body": "\x3cp\x3e\x3cobject height=\"250\" width=\"151\"\x3e\x3cparam name=\"movie\" value=\"http://www.youtube.com/v/_ke9TuLLbXk\x26amp;hl=en_US\x26amp;fs=1\x26amp;\"\x3e\x3cparam name=\"allowFullScreen\" value=\"true\"\x3e\x3cparam name=\"allowscriptaccess\" value=\"always\"\x3e\x3cembed type=\"application/x-shockwave-flash\" src=\"http://www.youtube.com/v/_ke9TuLLbXk\x26amp;hl=en_US\x26amp;fs=1\x26amp;\" allowscriptaccess=\"always\" allowfullscreen=\"true\" height=\"151\" width=\"250\"\x3e\x3c/object\x3e\x3c/p\x3e\r\n\r\n\r\n\x3cp\x3e\x26nbsp;\x3c/p\x3e\x3cp\x3e\x3ca href=\"http://clintonbushhaitifund.org/\"\x3eJoin Presidents Bill Clinton and George W. Bush \x3c/a\x3ein their efforts to raise funds for the people of Haiti.\x26nbsp; \x3c/p\x3e" }, "440": { "title": "View The Maps", "id": "440", "image": "\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/Screen shot 2010-01-18 at 6.14.12 PM.png\" alt=\"Screen shot 2010-01-18 at 6.14.12 PM.png\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e", "description": "See where people are texting from in Haiti", "body": "\x3ch2\x3eWhat Is Ushahidi?\x3c/h2\x3e\r\n\x3cp\x3e\x3cobject width=\"250\" height=\"150\"\x3e\x3cparam name=\"allowfullscreen\" value=\"true\"\x3e\x3cparam name=\"allowscriptaccess\" value=\"always\"\x3e\x3cparam name=\"movie\" value=\"http://vimeo.com/moogaloop.swf?clip_id=7838030\x26amp;server=vimeo.com\x26amp;show_title=1\x26amp;show_byline=1\x26amp;show_portrait=0\x26amp;color=\x26amp;fullscreen=1\"\x3e\x3cembed type=\"application/x-shockwave-flash\" src=\"http://vimeo.com/moogaloop.swf?clip_id=7838030\x26amp;server=vimeo.com\x26amp;show_title=1\x26amp;show_byline=1\x26amp;show_portrait=0\x26amp;color=\x26amp;fullscreen=1\" allowfullscreen=\"true\" allowscriptaccess=\"always\" width=\"250\" height=\"150\"\x3e\x3c/object\x3e\x3c/p\x3e\r\n\x3cp\x3e\x26nbsp;\x3c/p\x3e\x3cp\x3eUSHAHIDI in English means Testimony - The word is a SWAHILI word. \r\n\r\n\x3c/p\x3e\x3cp\x3e\x3ca href=\"http://www.ushahidi.com/\" target=\"_blank\"\x3e\x3c/a\x3e\r\n\r\n\x3c/p\x3e\x3cp\x3e\x3ca href=\"http://haiti.ushahidi.com/\"\x3eCheck out the maps.\x3c/a\x3e\x3c/p\x3e" } }, "base_path": "http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget", "host": "http://toolbox.pic.tv", "round_corners": false, "widget_html": "\x3cdiv class=\"mie-toolbox\" style=\"width: 260px\" \x3e\n	\x3cdiv class=\"mie-toolbox-header\" style=\"background-color:#CA0033\"\x3e\n	  \x3cdiv class=\"mie-toolbox-header-inner\"\x3e\n	  \x3cimg  width=\"216\" height=\"36\" alt=\"\" src=\"http://toolbox.pic.tv/sites/default/files/images/header/toolbox_title_3.png?1263780752\" /\x3e	  \x3c/div\x3e\n	\x3c/div\x3e\n\n	\x3cdiv class=\"mie-toolbox-items\"\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#363636\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"422\" /\x3e\n		  \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n  		  \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n  		    \x3ctr\x3e\n  		        		      \x3ctd style=\"width:1px;\"\x3e\n        			\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/cellphone.gif\" alt=\"cellphone.gif\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e  			    \x3c/td\x3e\n  			      			    \x3ctd\x3e\n        			\x3ch3 class=\"mie-toolbox-item-title\"\x3eHelp Haiti: Donate $10 by Text Message\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3eAll money supports relief work\x3c/div\x3e\n  			    \x3c/td\x3e\n  			    \x3ctd style=\"width:1%;\"\x3e\n  			      \x3cdiv class=\"mie-toolbox-item-more\"\x3e\n        				\x3cdiv class=\"mie-toolbox-item-more-text\"\x3e\x26nbsp;\x3c/div\x3e\n        				\x3cimg width=\"15px\" height=\"15px\" class=\"mie-toolbox-item-more-image\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\n      				\x3c/div\x3e\n  			    \x3c/td\x3e\n  			  \x3c/tr\x3e\n  			\x3c/table\x3e\n			\x3c/div\x3e\n		\x3c/div\x3e\n\n		\x3cdiv class=\"mie-toolbox-item-content\" style=\"background-color:#181818\"\x3e\n		  \x3cdiv class=\"mie-toolbox-item-content-inner\"\x3e\x3cp\x3eYou can help the Red Cross in their efforts to support the people of Haiti.\x3c/p\x3e\r\n\x3cp style=\"text-align: center;\"\x3e\x3cstrong\x3eText the word:\x3cbr\x3e\x26nbsp;\x3cbr\x3e\x3cspan style=\"font-size: 26px  !important;\"\x3eHaiti\x3c/span\x3e\x3cbr\x3e\x3c/strong\x3e\x3c/p\x3e\r\n\x3cbr\x3e\r\n\x3cp style=\"text-align: center;\"\x3e\x3cstrong\x3eto:\x3cbr\x3e\x26nbsp;\x3cbr\x3e\x3cspan style=\"font-size: 20px !important;\"\x3e90999\x3c/span\x3e\x3cbr\x3e\x3c/strong\x3e\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#363636\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"424\" /\x3e\n		  \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n  		  \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n  		    \x3ctr\x3e\n  		        		      \x3ctd style=\"width:1px;\"\x3e\n        			\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/embassy.jpg\" alt=\"embassy.jpg\" title=\"Embassy Logo\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e  			    \x3c/td\x3e\n  			      			    \x3ctd\x3e\n        			\x3ch3 class=\"mie-toolbox-item-title\"\x3eFind Out About Family\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3eContact the US Embassy or the State Department\x3c/div\x3e\n  			    \x3c/td\x3e\n  			    \x3ctd style=\"width:1%;\"\x3e\n  			      \x3cdiv class=\"mie-toolbox-item-more\"\x3e\n        				\x3cdiv class=\"mie-toolbox-item-more-text\"\x3e\x26nbsp;\x3c/div\x3e\n        				\x3cimg width=\"15px\" height=\"15px\" class=\"mie-toolbox-item-more-image\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\n      				\x3c/div\x3e\n  			    \x3c/td\x3e\n  			  \x3c/tr\x3e\n  			\x3c/table\x3e\n			\x3c/div\x3e\n		\x3c/div\x3e\n\n		\x3cdiv class=\"mie-toolbox-item-content\" style=\"background-color:#181818\"\x3e\n		  \x3cdiv class=\"mie-toolbox-item-content-inner\"\x3e\x3cp\x3e\x3cem\x3eFrom \x3ca href=\"http://haiti.usembassy.gov\"\x3ehaiti.usembassy.gov:\x3c/a\x3e\x3c/em\x3e\x3c/p\x3e\r\n\x3cp class=\"Table_Content\"\x3eDuring the Crisis In Haiti, \x3cstrong\x3ecalls\r\nregarding the welfare of U.S. citizens\x3c/strong\x3e can be made to the Embassy’s\r\nConsular Task Force in Port-au-Prince at 509-2229-8942, 509-2229-8089,\r\n509-2229-8322 or 509-2229-8672.\x3c/p\x3e\x3cp class=\"Table_Content\"\x3eThe State Department Operations Center has\r\nset up the following number for Americans seeking information about\r\nfamily members in Haiti: 1-888-407-4747 (due to heavy volume, some\r\ncallers may receive a recording).\x3c/p\x3e\r\n\x3cp\x3eThe Department of State has received a high volume of calls\r\nconcerning the welfare of U.S. citizens in Haiti.\x26nbsp;\x26nbsp; To handle these\r\nrequests most efficiently, the Department has established an e-mail\r\naddress for people who are trying to contact their U.S. citizen friends\r\nand relatives in Haiti.\x26nbsp; \x3c/p\x3e\r\n\x3cp\x3ePlease send your inquiries to:\x26nbsp; \x3ca href=\"mailto:Haiti-Earthquake@State.Gov\"\x3e\x3cspan style=\"text-decoration: underline;\"\x3e\x3cspan style=\"color: #0000ff;\"\x3eHaiti-Earthquake@State.Gov\x3c/span\x3e\x3c/span\x3e\x3c/a\x3e and include the following information:\x3c/p\x3e\r\n\x3cul\x3e\x3cli class=\"Paragraph\"\x3eThe full name, date of birth and passport information (if known) of the persons in Haiti you are trying to contact.\x3c/li\x3e\x3cli class=\"Paragraph\"\x3eTheir contact information in Haiti;\x26nbsp; telephone numbers, email address, hotel name or address (if known)\x3c/li\x3e\x3cli class=\"Paragraph\"\x3eYour name and contact information, and your relationship to the person in Haiti (parent, spouse, friend etc.)\x3c/li\x3e\x3cli\x3e\x3cp\x3eAny special or emergency circumstances. \x3c/p\x3e\x3c/li\x3e\x3c/ul\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#363636\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"428\" /\x3e\n		  \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n  		  \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n  		    \x3ctr\x3e\n  		        		      \x3ctd style=\"width:1px;\"\x3e\n        			\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/helpout.gif\" alt=\"helpout.gif\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e  			    \x3c/td\x3e\n  			      			    \x3ctd\x3e\n        			\x3ch3 class=\"mie-toolbox-item-title\"\x3eOnline Person Finder\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3eUse this tool to locate people in Haiti\x3c/div\x3e\n  			    \x3c/td\x3e\n  			    \x3ctd style=\"width:1%;\"\x3e\n  			      \x3cdiv class=\"mie-toolbox-item-more\"\x3e\n        				\x3cdiv class=\"mie-toolbox-item-more-text\"\x3e\x26nbsp;\x3c/div\x3e\n        				\x3cimg width=\"15px\" height=\"15px\" class=\"mie-toolbox-item-more-image\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\n      				\x3c/div\x3e\n  			    \x3c/td\x3e\n  			  \x3c/tr\x3e\n  			\x3c/table\x3e\n			\x3c/div\x3e\n		\x3c/div\x3e\n\n		\x3cdiv class=\"mie-toolbox-item-content\" style=\"background-color:#181818\"\x3e\n		  \x3cdiv class=\"mie-toolbox-item-content-inner\"\x3e\x3cp\x3eUse the \x3ca href=\"http://haiticrisis.appspot.com/\"\x3eGoogle Crisis Response application\x3c/a\x3e if you are looking for someone or have information about someone in Haiti.\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#363636\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"427\" /\x3e\n		  \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n  		  \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n  		    \x3ctr\x3e\n  		        		      \x3ctd style=\"width:1px;\"\x3e\n        			\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/ushahidi.gif\" alt=\"ushahidi.gif\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e  			    \x3c/td\x3e\n  			      			    \x3ctd\x3e\n        			\x3ch3 class=\"mie-toolbox-item-title\"\x3eHow To Help Right Now\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3eThousands of people in Haiti need assistance\x3c/div\x3e\n  			    \x3c/td\x3e\n  			    \x3ctd style=\"width:1%;\"\x3e\n  			      \x3cdiv class=\"mie-toolbox-item-more\"\x3e\n        				\x3cdiv class=\"mie-toolbox-item-more-text\"\x3e\x26nbsp;\x3c/div\x3e\n        				\x3cimg width=\"15px\" height=\"15px\" class=\"mie-toolbox-item-more-image\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\n      				\x3c/div\x3e\n  			    \x3c/td\x3e\n  			  \x3c/tr\x3e\n  			\x3c/table\x3e\n			\x3c/div\x3e\n		\x3c/div\x3e\n\n		\x3cdiv class=\"mie-toolbox-item-content\" style=\"background-color:#181818\"\x3e\n		  \x3cdiv class=\"mie-toolbox-item-content-inner\"\x3e\x3cp\x3e\x3cem\x3eUshahidi.com has a \x3ca href=\"http://haiti.ushahidi.com/help\"\x3efull list of ways you can help\x3c/a\x3e the people of Haiti right now. Here\'s a sampling:\x3c/em\x3e\x3ca href=\"http://haiti.ushahidi.com/help/view/2\"\x3e\x3c/a\x3e\x3c/p\x3e\x3cp\x3e\x3cstrong\x3e\x3ca href=\"http://haiti.ushahidi.com/help/view/2\"\x3eA list of charitable organizations active in Haiti\x3c/a\x3e\x3c/strong\x3e\x3cbr\x3eFor those in the US interested in helping immediately, simply text \"HAITI\"\r\nto \"90999\" and a donation of $10 will be given automatically to the Red\r\nCross...\x3c/p\x3e\x3cp\x3e\x3cstrong\x3e\x3ca href=\"http://haiti.ushahidi.com/help/view/15\"\x3eHaiti Volunteer Network\x3c/a\x3e\x3c/strong\x3e\x3cbr\x3eThis site provides a platform for people who wish to donate services or\r\ngoods to connect with relief and humanitarian agencies that are helping\r\nHaiti...\x3c/p\x3e\x3cp\x3e\x3cstrong\x3e\x3ca href=\"http://haiti.ushahidi.com/help/view/8\"\x3eI Want 2 Help\x3c/a\x3e\x3c/strong\x3e\x3cbr\x3eUnited Way and The Miami Herald/el Nuevo Herald have activated Operation\r\nHelping Hands to collect donations in response to the catastrophic\r\nearthquake...\x3c/p\x3e\x3cp\x3e\x3cstrong\x3e\x3ca href=\"http://haiti.ushahidi.com/help/view/3\"\x3eYele\x3c/a\x3e\x3c/strong\x3e\x3cbr\x3eYéle Haiti is a grassroots movement that builds global awareness for Haiti\r\nwhile helping to transform the country through programs in education,\r\nsports...\x3c/p\x3e\x3cp\x3e\x26nbsp;\x3c/p\x3e\x3cp\x3eAlso, \x3ca href=\"http://networkforgood.org\"\x3eNetwork for Good\x3c/a\x3e connects donors to dozens of organizations, many of which are directly involved in helping the people of Haiti. \x3c/p\x3e\x3ch2\x3e\x3ca href=\"http://networkforgood.blogspot.com/2010/01/haiti-relief-donate-now.html\"\x3eDonate Now!\x3c/a\x3e\x3c/h2\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#363636\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"433\" /\x3e\n		  \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n  		  \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n  		    \x3ctr\x3e\n  		        		      \x3ctd style=\"width:1px;\"\x3e\n        			\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/plane0f.gif\" alt=\"plane0f.gif\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e  			    \x3c/td\x3e\n  			      			    \x3ctd\x3e\n        			\x3ch3 class=\"mie-toolbox-item-title\"\x3eTraveling to Haiti\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3eInformation and warnings\x3c/div\x3e\n  			    \x3c/td\x3e\n  			    \x3ctd style=\"width:1%;\"\x3e\n  			      \x3cdiv class=\"mie-toolbox-item-more\"\x3e\n        				\x3cdiv class=\"mie-toolbox-item-more-text\"\x3e\x26nbsp;\x3c/div\x3e\n        				\x3cimg width=\"15px\" height=\"15px\" class=\"mie-toolbox-item-more-image\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\n      				\x3c/div\x3e\n  			    \x3c/td\x3e\n  			  \x3c/tr\x3e\n  			\x3c/table\x3e\n			\x3c/div\x3e\n		\x3c/div\x3e\n\n		\x3cdiv class=\"mie-toolbox-item-content\" style=\"background-color:#181818\"\x3e\n		  \x3cdiv class=\"mie-toolbox-item-content-inner\"\x3e\x3cp\x3eIf you are considering traveling to Haiti, \x3ca href=\"http://travel.state.gov/travel/cis_pa_tw/cis/cis_1134.html\"\x3ehere is information you should know,\x3c/a\x3e from the State Department.\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#363636\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"434\" /\x3e\n		  \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n  		  \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n  		    \x3ctr\x3e\n  		        		      \x3ctd style=\"width:1px;\"\x3e\n        			\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/haitilogo.gif\" alt=\"haitilogo.gif\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e  			    \x3c/td\x3e\n  			      			    \x3ctd\x3e\n        			\x3ch3 class=\"mie-toolbox-item-title\"\x3eThe Clinton Bush Haiti Fund\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3eCompassion and generosity\x3c/div\x3e\n  			    \x3c/td\x3e\n  			    \x3ctd style=\"width:1%;\"\x3e\n  			      \x3cdiv class=\"mie-toolbox-item-more\"\x3e\n        				\x3cdiv class=\"mie-toolbox-item-more-text\"\x3e\x26nbsp;\x3c/div\x3e\n        				\x3cimg width=\"15px\" height=\"15px\" class=\"mie-toolbox-item-more-image\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\n      				\x3c/div\x3e\n  			    \x3c/td\x3e\n  			  \x3c/tr\x3e\n  			\x3c/table\x3e\n			\x3c/div\x3e\n		\x3c/div\x3e\n\n		\x3cdiv class=\"mie-toolbox-item-content\" style=\"background-color:#181818\"\x3e\n		  \x3cdiv class=\"mie-toolbox-item-content-inner\"\x3e\x3cp\x3e\x3cobject height=\"250\" width=\"151\"\x3e\x3cparam name=\"movie\" value=\"http://www.youtube.com/v/_ke9TuLLbXk\x26amp;hl=en_US\x26amp;fs=1\x26amp;\"\x3e\x3cparam name=\"allowFullScreen\" value=\"true\"\x3e\x3cparam name=\"allowscriptaccess\" value=\"always\"\x3e\x3cembed type=\"application/x-shockwave-flash\" src=\"http://www.youtube.com/v/_ke9TuLLbXk\x26amp;hl=en_US\x26amp;fs=1\x26amp;\" allowscriptaccess=\"always\" allowfullscreen=\"true\" height=\"151\" width=\"250\"\x3e\x3c/object\x3e\x3c/p\x3e\r\n\r\n\r\n\x3cp\x3e\x26nbsp;\x3c/p\x3e\x3cp\x3e\x3ca href=\"http://clintonbushhaitifund.org/\"\x3eJoin Presidents Bill Clinton and George W. Bush \x3c/a\x3ein their efforts to raise funds for the people of Haiti.\x26nbsp; \x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n			\x3cdiv class=\"mie-toolbox-item-header\" style=\"background-color:#363636\"\x3e\n		  \x3cinput class=\"toolbox-item-id\" type=\"hidden\" value=\"440\" /\x3e\n		  \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n  		  \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n  		    \x3ctr\x3e\n  		        		      \x3ctd style=\"width:1px;\"\x3e\n        			\x3cimg src=\"http://toolbox.pic.tv/sites/default/files/imagecache/toolbox_item_thumb/images/toolbox_items/Screen shot 2010-01-18 at 6.14.12 PM.png\" alt=\"Screen shot 2010-01-18 at 6.14.12 PM.png\" title=\"\"  class=\"mie-toolbox-item-image\" width=\"40\" height=\"40\" /\x3e  			    \x3c/td\x3e\n  			      			    \x3ctd\x3e\n        			\x3ch3 class=\"mie-toolbox-item-title\"\x3eView The Maps\x3c/h3\x3e\n        			\x3cdiv class=\"mie-toolbox-item-subhead\"\x3eSee where people are texting from in Haiti\x3c/div\x3e\n  			    \x3c/td\x3e\n  			    \x3ctd style=\"width:1%;\"\x3e\n  			      \x3cdiv class=\"mie-toolbox-item-more\"\x3e\n        				\x3cdiv class=\"mie-toolbox-item-more-text\"\x3e\x26nbsp;\x3c/div\x3e\n        				\x3cimg width=\"15px\" height=\"15px\" class=\"mie-toolbox-item-more-image\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\n      				\x3c/div\x3e\n  			    \x3c/td\x3e\n  			  \x3c/tr\x3e\n  			\x3c/table\x3e\n			\x3c/div\x3e\n		\x3c/div\x3e\n\n		\x3cdiv class=\"mie-toolbox-item-content\" style=\"background-color:#181818\"\x3e\n		  \x3cdiv class=\"mie-toolbox-item-content-inner\"\x3e\x3ch2\x3eWhat Is Ushahidi?\x3c/h2\x3e\r\n\x3cp\x3e\x3cobject width=\"250\" height=\"150\"\x3e\x3cparam name=\"allowfullscreen\" value=\"true\"\x3e\x3cparam name=\"allowscriptaccess\" value=\"always\"\x3e\x3cparam name=\"movie\" value=\"http://vimeo.com/moogaloop.swf?clip_id=7838030\x26amp;server=vimeo.com\x26amp;show_title=1\x26amp;show_byline=1\x26amp;show_portrait=0\x26amp;color=\x26amp;fullscreen=1\"\x3e\x3cembed type=\"application/x-shockwave-flash\" src=\"http://vimeo.com/moogaloop.swf?clip_id=7838030\x26amp;server=vimeo.com\x26amp;show_title=1\x26amp;show_byline=1\x26amp;show_portrait=0\x26amp;color=\x26amp;fullscreen=1\" allowfullscreen=\"true\" allowscriptaccess=\"always\" width=\"250\" height=\"150\"\x3e\x3c/object\x3e\x3c/p\x3e\r\n\x3cp\x3e\x26nbsp;\x3c/p\x3e\x3cp\x3eUSHAHIDI in English means Testimony - The word is a SWAHILI word. \r\n\r\n\x3c/p\x3e\x3cp\x3e\x3ca href=\"http://www.ushahidi.com/\" target=\"_blank\"\x3e\x3c/a\x3e\r\n\r\n\x3c/p\x3e\x3cp\x3e\x3ca href=\"http://haiti.ushahidi.com/\"\x3eCheck out the maps.\x3c/a\x3e\x3c/p\x3e\x3c/div\x3e\n		\x3c/div\x3e\n		\x3c/div\x3e\n\n      \x3cdiv class=\"mie-toolbox-share-header\" style=\"background-color:#CA0033\"\x3e\n      \x3cdiv class=\"mie-toolbox-item-header-inner\"\x3e\n      \x3ctable class=\"mie-toolbox-item-header-table\" width=\"100%\"\x3e\n        \x3ctr\x3e\n          \x3ctd style=\"text-align:right\"\x3eshare this toolbox\x3c/td\x3e\n          \x3ctd style=\"width:40px;text-align:center\"\x3e\x3cimg width=\"15px\" height=\"15px\" src=\"http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/images/arrow.png\" /\x3e\x3c/td\x3e\n        \x3c/tr\x3e\n      \x3c/table\x3e\n      \x3c/div\x3e\n    \x3c/div\x3e\n    \x3cdiv class=\"mie-toolbox-share-content\" style=\"background-color:#181818\"\x3e\n      \x3cdiv\x3e\r\nWe share these toolboxes widely across the Web by offering the embed code below. Understand, however, that this service is in beta, and we cannot offer support should this code adversely affect your website. Use it \x3cb\x3eat your own risk.\x3c/b\x3e Also, by embedding this code on your site, you are agreeing to our \x3ca href=\"http://pic.tv/toolboxterms\"\x3eTerms and Conditions of Use\x3c/a\x3e.\x3cbr\x3e\r\n\x3c/div\x3e\x3cbr/\x3e\n      \x3cinput type=\"text\" class=\"mie-toolbox-text-field\" onclick=\"this.focus(); this.select();\" value=\"\x26lt;div\x26gt;\x26lt;script type=\x26quot;text/javascript\x26quot; src=\x26quot;http://toolbox.pic.tv/toolbox_widget/421/?width=260\x26quot;\x26gt;\x26lt;/script\x26gt;\x26lt;noscript\x26gt;\x26lt;a href=\x26quot;http://toolbox.pic.tv/toolbox/421\x26quot;\x26gt;View the entire content of this Toolbox here.Haiti Earthquake\x26lt;/a\x26gt;The \x26lt;a href=\x26quot;http://toolbox.pic.tv/about\x26quot;\x26gt;Make It Easy Toolbox\x26lt;/a\x26gt; is a feature of the \x26lt;a href=\x26quot;http://pic.tv\x26quot;\x26gt;Public Internet Channel\x26lt;/a\x26gt; and displays content also available on \x26lt;a href=\x26quot;http://thebeehive.org\x26quot;\x26gt;the Beehive\x26lt;/a\x26gt;, where you can get free how to help on \x26lt;a href=\x26quot;http://www.thebeehive.org/money/pay-taxes\x26quot; target=\x26quot;_blank\x26quot;\x26gt;tax prep\x26lt;/a\x26gt;, \x26lt;a href=\x26quot;http://www.thebeehive.org/money/spend-it/budget\x26quot; target=\x26quot;_blank\x26quot;\x26gt;budget\x26lt;/a\x26gt;, \x26lt;a href=\x26quot;http://www.thebeehive.org/diabetes\x26quot; target=\x26quot;_blank\x26quot;\x26gt;diabetes\x26lt;/a\x26gt;, \x26lt;a href=\x26quot;http://www.thebeehive.org/health\x26quot; target=\x26quot;_blank\x26quot;\x26gt;health\x26lt;/a\x26gt;, \x26lt;a href=\x26quot;http://www.thebeehive.org/jobs/career-coach\x26quot; target=\x26quot;_blank\x26quot;\x26gt;career\x26lt;/a\x26gt;, \x26lt;a href=\x26quot;http://www.thebeehive.org/school/k-12-students/homework-help\x26quot; target=\x26quot;_blank\x26quot;\x26gt;homework\x26lt;/a\x26gt;, \x26lt;a href=\x26quot;http://www.thebeehive.org/jobs\x26quot; target=\x26quot;_blank\x26quot;\x26gt;jobs\x26lt;/a\x26gt;, \x26lt;a href=\x26quot;http://www.thebeehive.org/jobs/unemployment-101\x26quot; target=\x26quot;_blank\x26quot;\x26gt;unemployment\x26lt;/a\x26gt; \x26amp;amp; more.\x26lt;/noscript\x26gt;\x26lt;/div\x26gt;\" style=\"width:80%\"/\x3e\n    \x3c/div\x3e\n    \n	\x3cdiv class=\"mie-toolbox-footer\" style=\"background-color:#CA0033\"\x3e\n	  \x3ca href=\"http://pic.tv\"\x3e\x3cimg  id=\"mie-toolbox-footer-image\" width=\"165\" height=\"39\" alt=\"\" src=\"http://toolbox.pic.tv/sites/default/files/images/footer/pic_logo_tb_0.png?1263600430\" /\x3e\x3c/a\x3e	\x3c/div\x3e\n\x3c/div\x3e", "theme": { "theme_id": "423", "base_color": "#CA0033", "open_color": "#181818", "closed_color": "#363636", "more_text_open": "open", "more_text_close": "close" }, "css_file": "http://toolbox.pic.tv/sites/all/modules/custom/toolbox_widget/css/toolbox_widget.css?1270586339", "reports": { "log": true, "ga": { "use": 1, "code": "UA-15172132-1" } } }; toolboxInitWidget(toolbox_data_421);