// global file
// sniffs activex control (instead of flash plug in) on Windows IE with vbscript
// version 1.1
// date: 10.17.2000
// updated file 08.15.2002 to include version 7

var browserIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;		
var OSWindows = (navigator.appVersion.indexOf("Windows") != -1) ? true : false; 
if(browserIE && OSWindows){ 
	document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n');
	document.write('on error resume next \n');
	document.write('ads_gotFlash2 = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.2"))) \n');
	document.write('ads_gotFlash3 = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.3"))) \n');
	document.write('ads_gotFlash4 = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.4"))) \n');
	document.write('ads_gotFlash5 = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.5"))) \n');	
	document.write('ads_gotFlash6 = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.6"))) \n');	
	document.write('ads_gotFlash7 = (IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.7"))) \n');	
	document.write('</SCR' + 'IPT\> \n'); 
}
