﻿window.onload = update;
function update() {

//	document.getElementById('seo01').innerHTML = myJSONObject.text;

	var script = document.getElementsByTagName("script");
	for (var i = 0, len = script.length; i < len; i++) {
		var uri = script[i].src;

		if (!uri.match(/seo\/seo\.js/)) continue;

		script[i].outerHTML=myJSONObject.text;
    }

}
