// JavaScript Document
function grabadora(grabacion) {
	var g = document.getElementById('idgrabadora');
	if (g==null) return;
	try {
		g.setMostrar(true);
		g.setGrabacion(grabacion);
	}
	catch(e){}
}

function initGrabadora()
{
	var g = document.getElementById('idgrabadora');
	if (g==null) return;
	try {
		g.initGrabadora();
	}
	catch(e){}
}

/**
*	Flash Object to control external calls from within the Flash Activities
*	to the RECORDER
*/
function objFlashRecorder()
{
	this.g 			= null;
	this.loaded 	= false;
	this.inited		= false;
    this.timer 		= "0";
	}

/**
*	Applet inited
*/
objFlashRecorder.prototype.appletInited = function()
{
	this.inited = true;	
}

var objFlashRecorder = new objFlashRecorder();

