// JavaScript Document
<!-- 
//This script calls the flash version detector and writes to corresponding code into the html

//var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
//if(hasRightVersion) {  // if we've detected an acceptable version
//var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + 			
				//'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"' +
//				'width="800" height="50" title="sub_head">' +
//				'<param name="movie" value="images/sub_head.swf" />' +
//				'<param name="quality" value="high" />' +
//				'<embed src="images/sub_head.swf" quality="high" //pluginspage="http://www.macromedia.com/go/getflashplayer"' +
//				'type="application/x-shockwave-flash" width="800" height="50">' +
//				'</embed></object>';

//document.write(oeTags);   // embed the flash movie
//} else {  // flash is too old or we can't detect the plugin
var alternateContent = '<img src="images/links.gif" width="800" height="50" usemap="#links_Map" />' +
						'<map name="links_Map" id="links_Map">' +
						'<area shape="rect" alt="Swim Registration Form" coords="619,16,738,32" href="files/Registration_Form_09.10.pdf" target="_blank" />' +
						'<area shape="rect" alt="GNBC Programs" coords="477,16,568,32" href="programs.html" />' +
						'<area shape="rect" alt="GNBC Contacts" coords="336,16,422,32" href="coaches.html" />' +
						'<area shape="rect" alt="Swim Team Meets" coords="192,16,256,33" href="meets2010.html" />' +
						'<area shape="rect" alt="Swim Team Calendar" coords="50,16,138,33" href="calendar.html" />' +
						'</map>';
document.write(alternateContent);  // insert non-flash content
// -->