function changesize() { 
			 var viewportwidth;
			 var viewportheight;
			 
			 // IE7-mozilla-netscape-safari
			 
			 if (typeof window.innerWidth != 'undefined')
			 {
			      viewportwidth = window.innerWidth;
			      viewportheight = window.innerHeight;
			 }
			 
			// IE6
			
			 else if (typeof document.documentElement != 'undefined' && typeof document.documentElement.clientWidth != 'undefined' && document.documentElement.clientWidth != 0)
			 {
			       viewportwidth = document.documentElement.clientWidth;
			       viewportheight = document.documentElement.clientHeight;
			 }
			 
			 // IE (alt)
			 
			 else
			 {
			       viewportwidth = document.getElementsByTagName('body')[0].clientWidth;
			       viewportheight = document.getElementsByTagName('body')[0].clientHeight;
			 }
			if (viewportheight < 600){
				viewportheight = 600;
			}
			document.getElementById('spacerl').style.height = viewportheight-600+"px";
			document.getElementById('spacerm').style.height = viewportheight-600+"px";
			document.getElementById('spacerr').style.height = viewportheight-600+"px";
			document.getElementById('layout').style.height = viewportheight-1+"px";
			
			document.getElementById('contentspacerl').style.height = viewportheight-240+"px";
			document.getElementById('contentspacerm').style.height = viewportheight-240+"px";
			document.getElementById('contentspacerr').style.height = viewportheight-240+"px";
			document.getElementById('layoutspacer').style.height = viewportheight-1+"px";
			document.getElementById('contentoverlay').style.height = viewportheight-1+"px";
			}
			window.onresize = changesize;
			
 function embedflash(){
					// Version check based upon the values entered above in "Globals"
					var hasReqestedVersion = DetectFlashVer(8,0, 0);
					
					// Check to see if the version meets the requirements for playback
					if (hasReqestedVersion) {
						// if we've detected an acceptable version
						// embed the Flash Content SWF when all tests are passed
						AC_FL_RunContent(
									"src", "./flash/head",
									"width", "950",
									"height", "170",
									"align", "middle",
									"id", "detectionExample",
									"quality", "high",
									"bgcolor", "#FFFFFF",
									"name", "detectionExample",
									"allowScriptAccess","sameDomain",
									"type", "application/x-shockwave-flash",
									'codebase', 'http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab',
									"pluginspage", "http://www.adobe.com/go/getflashplayer"
						);
					} else {  // flash is too old or we can't detect the plugin
						
					}
				}
