
// Video Professor ajax logging calls
// I pass the value from the ajax call element to the logger
// Gil Carroll
// 9-11-07


	function doAjaxLog(logString){
		//alert(logString + " from vpAjax.js " + _cfscriptLocation);
		DWREngine._execute(_cfscriptLocation, null, 'ajaxLog', logString, resultHandler);
	}
	
	function resultHandler(foo){
		//alert(foo);
	}
