// SCORMAPI Class
function SCORMAPI()
{
	this.LMSInitialize = _LMSInitialize;
	this.LMSFinish = _LMSFinish;
	this.LMSSetValue = _LMSSetValue;
	this.LMSGetValue = _LMSGetValue;
	this.LMSCommit = _LMSCommit;
	this.LMSGetLastError = _LMSGetLastError;
	this.LMSGetErrorString = _LMSGetErrorString;
	this.LMSGetDiagnostic = _LMSGetDiagnostic;
}

function _LMSInitialize()
{
	// Let LMSInteraction decide if the business rules for LMSInitialize allow us to proceed
	return InteractionInitialize();
}

function _LMSFinish()
{
	return InteractionFinish();
}

function _LMSSetValue(param,value)
{
	return InteractionSetValue(param, value);
}

function _LMSGetValue(param)
{
	return InteractionGetValue(param);
}

function _LMSCommit()
{
	return InteractionCommit();
}

function _LMSGetLastError()
{
	return InteractionGetLastError();
}
	
function _LMSGetErrorString(param)
{
	return InteractionGetErrorString(param);
}

function _LMSGetDiagnostic(param)
{
	return InteractionGetDiagnostic(param);
}
