<!--
function getSWVersion () {

	var tVersionString = "";

	if (navigator.mimeTypes && navigator.mimeTypes["application/x-director"] && navigator.mimeTypes["application/x-director"].enabledPlugin) {
		if (navigator.plugins && navigator.plugins["Shockwave for Director"] && (tVersionIndex = navigator.plugins["Shockwave for Director"].description.indexOf(".")) != - 1) {	
			var tVersionString = navigator.plugins["Shockwave for Director"].description.substring(tVersionIndex-2, tVersionIndex+2);
		}
	} else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && (navigator.userAgent.indexOf("Windows 95")>=0 || navigator.userAgent.indexOf("Windows 98")>=0 || navigator.userAgent.indexOf("Windows NT")>=0 )) {
		document.write('<SCRIPT LANGUAGE=VBScript\> \n');
		document.write('  on error resume next \n');
		document.write('  set tSWControl = CreateObject("SWCtl.SWCtl") \n');
		document.write('  if IsObject(tSWControl) then \n');
		document.write('    tVersionString = tSWControl.ShockwaveVersion("") \n');
		document.write('  end if');
		document.write('</SCRIPT\> \n');
	}
	
	return tVersionString;
	
}
-->
