function initFlash(){
	
	FlashControl.createSWFObject(
		"home.swf",
		{
			width:"100%",
			height:"100%",
			bgcolor:"#ffffff",
			wmode:"transparent",
			quality:"high",
			align:"left",
			salign:"t",
			wmode:"transparent",
			allowScriptAccess:"sameDomain",
			id:"slideshow"
		},
		"flashwrapper",
		{
			detectFlash:true,
			flashVersion:8,
			detectResolution:false,
			resolutionY:750,
			resolutionX:1000,
			//detectViewport:true,
			//viewportY:400,
			//viewportX:600,
			onError:errorHandler
		}
	)

	
}
function errorHandler(err,erros){
	var wrapper = document.getElementById("flashwrapper")
	var _html=""
	switch (err){
		case "invalidFlash":
			
			location.href="http://www.thehinegroup.com/communities.aspx"
		//	_html+= '<a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash&promoid=BIOW" target="_blank"><img src="data/images/NoFlash.jpg" width="828" height="400" alt="The Hine Group" /></a>'
	//		wrapper.innerHTML = _html
		break;
	}
}

function expandWindow(){
  self.moveTo(0,0);
  self.resizeTo(screen.availWidth,screen.availHeight);
}


	
