// The code below contains functions that run active content. The functions

// assemble an OBJECT/EMBED tag string, and then perform a document.write of 

// this string in the calling html document.

//   AC_RunRealContent() - build tags to display Real content.

//	 AC_RunRealContentX() - build tags to display Real content in XHTML.

// To call one these functions, pass all the attributes and values that you would 

// otherwise specify for the object, param, and embed tags in the following form:

//   AC_RunRealContent(

//     "attrName1", "attrValue1"

//     "attrName2", "attrValue2"

//     ...

//     "attrNamen", "attrValuen"

//   )

//

//   AC_RunRealContentX(

//     "attrName1", "attrValue1"

//     "attrName2", "attrValue2"

//     ...

//     "attrNamen", "attrValuen"

//   )

// Note, these functions use the default value for classid.

// So, you should not pass in a value for this attribute. If you require

// an alternate value for this attribute, you'll need to modify the default value

// used in the 'AC_RunRealContent' and 'AC_RunRealContent2' functions implementations below. 

//

// You must include AC_RunActiveContent.js for these functions to work.


// Call this function for standarad html content
function AC_RunRealContent()

{

  AC_GenerateObj("AC_RunRealContent()", false, "clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA", arguments);
	
}

// Call this function for XHTML content
function AC_RunRealContentX()

{

  AC_GenerateObj("AC_RunRealContent()", true, "clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA", arguments);
	
}


	

