<!--
//Created by Robert Reinhardt for the Flash MX Bible, Hungry Minds
//This script will detect the presence of either the plug-in or
//the ActiveX Control for the Flash 5 Player.
var plugin = 0;
var activeX = 0;
var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
if ( plugin ) {
	plugin = parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)) >= 5;
} 
else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && navigator.userAgent.indexOf("Windows")>=0) {
	document.write('<SCRIPT LANGUAGE=VBScript\> \n');
	document.write('on error resume next \n');
	document.write('activeX = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5")))\n');
	document.write('<' + '/SCRIPT>');
}

function ora() {
 <!--
  var ora = new Date();
	ora = ora.getHours() + ":" + ora.getMinutes();
	
	return ora
}
//-->
