var flash=0; // define variable for older browsers (IE 4, WIN95)// DETECT FLASH ON ALL BROWSERS EXCEPT WINDOWS IEfunction detectFlash(){	var flash = 0;	if (navigator.plugins && navigator.plugins.length > 0){		if (navigator.plugins["Shockwave Flash"]) {			flash = navigator.plugins["Shockwave Flash"].description;			flash = flash.substring(flash.indexOf(".")-1);		} 	}	return parseInt(flash);}// CHECK FLASH VERSION, REDIRECT TO ERROR PAGEfunction testVersion(flash, flash_min){	//alert("flash: "+flash+"; flash_min: "+flash_min);	if(flash >= flash_min){		setFlashCookie(flash);		return true;	}else{		return false;	}}// WRITE FLASH VERSION TO COOKIEfunction setFlashCookie(flash){	document.cookie = "_flash="+parseInt(flash)+";";}// READ ENTIRE COOKIE BACK (USED FOR DEBUGGING)function readCookie(){	document.write(document.cookie);}// DEPOSIT FLASH FILE HEREfunction embedFlash(f, p, w, h){ // file, parameters, width, height	m = 5; // min version	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='+m+',0,0,0" width="'+w+'" height="'+h+'">');    document.write('  <param name="movie" value="'+f+'?'+p+'" />');    document.write('  <param name="quality" value="high" />');	    document.write('  <param name="wmode" value="transparent" />');//delete if necessary    document.write('  <embed src="'+f+'?'+p+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+w+'" height="'+h+'"></embed></object>');}function altAbout(){	document.write('<img src="/img/aboutReplace.jpg" width="781" height="171" border="0" usemap="#about">');	document.write('<map name="about">');	document.write('<area shape="rect" coords="2,152,89,169" href="#">');	document.write('<area shape="rect" coords="99,153,177,169" href="#">');	document.write('<area shape="rect" coords="191,152,253,169" href="#">');	document.write('<area shape="rect" coords="264,153,372,170" href="#">');	document.write('<area shape="rect" coords="395,153,476,170" href="#">');	document.write('</map>');}function altEducation(){	document.write('<img src="educationReplace.jpg" width="781" height="171" border="0" usemap="#education">');	document.write('<map name="education">');	document.write('<area shape="rect" coords="2,154,114,169" href="#">');	document.write('<area shape="rect" coords="128,155,189,169" href="#">');	document.write('<area shape="rect" coords="198,155,304,169" href="#">');	document.write('/map>');}