// Loads an interactive ActiveX control that does not require activation
// by populating the specified DIV with the specified tag data

function CreateControl(DivID, tagData)
{
	var d = document.getElementById(DivID);
	d.innerHTML = tagData;
}