//alert(flashinstalled);
//alert(flashversion);

function fnWriteFlash(which){
	/*
	
	the variable "flashinstalled" will return either :
	
	2 = installed
	1 = not installed
	0 = unknown
	
	*/
	if(flashinstalled == 2){
		switch(which){
			case "homeIntro" :
				document.write('<OBJECT id="homeFla" width="216" height="307" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0">');
				document.write('<PARAM name="movie" value="assets/flash/homeIntro.swf">');
				document.write('<PARAM name="quality" value="high">');
				document.write('<PARAM name="menu" value="false">');
				document.write('<EMBED src="assets/flash/homeIntro.swf" width="216" height="307" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT>');
				break;
			case "header_Home" :
				document.write('<OBJECT id="headerHome" width="499" height="124" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0">');
				document.write('<PARAM name="movie" value="assets/flash/header_Home.swf">');
				document.write('<PARAM name="quality" value="high">');
				document.write('<PARAM name="menu" value="false">');
				document.write('<EMBED src="assets/flash/header_Home.swf" width="499" height="124" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT>');
				break;
		}
	} else {
		switch(which){
			case "homeIntro" :
				document.write('<img src="assets/imgs/manOutline.gif" width="216" height="307" border="0">');
				break;
			case "header_Home" :
				document.write('<img src="assets/imgs/homeHeader.gif" width="499" height="124" border="0">');
				break;
		}
	}
}