
/*
var movieName = "pptflash";

function thisMovie(movieName) {
  // IE and Netscape refer to the movie object differently.
  // This function returns the appropriate syntax depending on the browser.
  if (navigator.appName.indexOf ("Microsoft") !=-1) {
    return window[movieName]
  }	else {
    return document[movieName]
  }
}

// Checks if movie is completely loaded.
// Returns true if yes, false if no.
function movieIsLoaded (theMovie) {
  if (typeof(theMovie) != "undefined") {
    return theMovie.PercentLoaded() == 100;
  } else {
    return false;
  }
}


document.onkeyup = KeyCheck;       

function desactiva(){
	alert("jejej");
}

function cargatodo(){
	alert("cargado");
	//document.getElementById("comment").onfocus=desactiva;
}









function KeyCheck(e)

{

   var KeyID = (window.event) ? event.keyCode : e.keyCode;
	if(KeyID==32){
		thisMovie(movieName).SetVariable("tecladodefuera", 1);
		window.document.pptflash.focus();
	}
}
*/
window.document.pptflash.focus();