function httpCall(url, v_id) {
	var v_platform = navigator.platform;
	var xmlhttp = false;
	
	if (v_platform.indexOf("Win") != -1) {
		// Windows Browser
		if (window.XMLHttpRequest) {
			try {
				xmlhttp = new XMLHttpRequest();
			} catch (e) {
				xmlhttp = false;
			}
		}else if (window.ActiveXObject) {
			try {
				xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
			} catch (e) {
				try {
					xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
				} catch (e) {
					xmlhttp = false;
				}
			}
		}
		if (xmlhttp) {
			xmlhttp.open('GET', url, false);
			xmlhttp.send(null);
			var v_text = xmlhttp.responseText;
			if (v_text.indexOf("The page cannot be found") == -1) {
				document.write(v_text);
			}
		}else {
			return;
		}
	}else {
		// Mobile Browser
		if (typeof XMLHttpRequest != 'undefined') {
			try {
				xmlhttp = new XMLHttpRequest();
			} catch (e) {
				xmlhttp = false;
			}
		}else if (window.ActiveXObject) {
			try {
				xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
			} catch (e) {
				try {
					xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
				} catch (e) {
					xmlhttp = false;
				}
			}
		}

		if (xmlhttp) {
			xmlhttp.open("GET", url, true);
			xmlhttp.onreadystatechange = function() {
				if (xmlhttp.readyState==4) {
					var v_text = xmlhttp.responseText;
					if (v_text.indexOf("The page cannot be found") == -1) {
						v_obj = document.getElementById(v_id);
						if (v_obj) {
							v_obj.innerHTML = v_text;
						}
					}
				}
			}
			xmlhttp.send(null)
		}
	}
}

if ('undefined' == typeof vg_cnt) {
	var vg_cnt = 0;
}

function ssi(url) {
	var v_id = "m"+(vg_cnt++);
	document.write('<div id="'+v_id+'"></div>');
	httpCall(url, v_id);
}
