
	function embedFlash(swfFile,width,height){					
		document.write('<OBJECT id="swfPreview" codeBase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab#version=8,0,24,0"');
		document.write('height="' + height + '" width="' + width + '" align="middle" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
		document.write('VIEWASTEXT>');
		document.write('<PARAM NAME="_cx" VALUE="27014">');
		document.write('<PARAM NAME="_cy" VALUE="16563">');
		document.write('<PARAM NAME="FlashVars" VALUE="">');
		document.write('<PARAM NAME="Movie" VALUE="' + swfFile + '">');
		document.write('<PARAM NAME="Src" VALUE="' + swfFile + '">');
		document.write('<PARAM NAME="WMode" VALUE="transparent">');
		document.write('<PARAM NAME="Play" VALUE="-1">');
		document.write('<PARAM NAME="Loop" VALUE="-1">');
		document.write('<PARAM NAME="Quality" VALUE="High">');
		document.write('<PARAM NAME="SAlign" VALUE="">');
		document.write('<PARAM NAME="Menu" VALUE="-1">');
		document.write('<PARAM NAME="Base" VALUE="">');
		document.write('<PARAM NAME="AllowScriptAccess" VALUE="always">');
		document.write('<PARAM NAME="Scale" VALUE="noScale">');
		document.write('<PARAM NAME="DeviceFont" VALUE="0">');
		document.write('<PARAM NAME="EmbedMovie" VALUE="0">');			
		document.write('<PARAM NAME="SWRemote" VALUE="">');
		document.write('<PARAM NAME="MovieData" VALUE="">');
		document.write('<PARAM NAME="SeamlessTabbing" VALUE="1">');
		document.write('<PARAM NAME="Profile" VALUE="0">');
		document.write('<PARAM NAME="ProfileAddress" VALUE="">');
		document.write('<PARAM NAME="ProfilePort" VALUE="0">');
		document.write('<embed id="swfEmbed" src="' + swfFile + '" quality="high" ');
		document.write('width="' + width + '" height="' + height + '" name="_preview" align="middle" ');
		document.write('allowScriptAccess="always" type="application/x-shockwave-flash" ');
		document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" />');
		document.write('</OBJECT>');					
		}
		
		
		function sendMail(emailAddress,subject,body){
		    window.location.href('mailto:' + emailAddress + '&subject=' + subject + '&body=' + body)
		}