//************************------------------------****************************
//FUNCION PARA CONTROLAR LA PELICULA PRESENTACION, COMPATIBIBILIDAD NAVEGADORES
//************************------------------------****************************
function reproducir() {
var peliIE=window.document.presentacion;
var peliNT=document.embeds[0];
if(navigator.appName.indexOf("Microsoft")!=-1) {
	peliIE.Play();
	} else {
	peliNT.Play();
	}
}
function parar () {
var peliIE=window.document.presentacion;
var peliNT=document.embeds[0];
if(navigator.appName.indexOf("Microsoft")!=-1) {
	peliIE.Stop();
	} else {
	peliNT.Stop();
	}
}
function rebobinar () {
var peliIE=window.document.presentacion;
var peliNT=document.embeds[0];
if(navigator.appName.indexOf("Microsoft")!=-1) {
	peliIE.Rewind();
	} else {
	peliNT.Rewind();
	}
}
function ira(x) {
var peliIE=window.document.presentacion;
var peliNT=document.embeds[0];
if(navigator.appName.indexOf("Microsoft")!=-1) {
	peliIE.GotoFrame(x);
	peliIE.Play();
	} else {
	peliNT.GotoFrame(x);
	peliNT.Play();
	}
}


