//Loads the flash
function LoadFlash(parentId)
{
	var parent = document.getElementById(parentId);
	
	var objTag = "";
	
	objTag = '<OBJECT id="hullo_intro" codeBase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" height="330" width="850" align="middle" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" VIEWASTEXT>';
	objTag += '<PARAM NAME="_cx" VALUE="9790">';
	objTag += '<PARAM NAME="_cy" VALUE="17859">';
	objTag += '<PARAM NAME="FlashVars" VALUE="">';
	objTag += '<PARAM NAME="Movie" VALUE="flash/erin.swf">';
	objTag += '<PARAM NAME="Src" VALUE="flash/erin.swf">';
	objTag += '<PARAM NAME="WMode" VALUE="Transparent">';
	objTag += '<PARAM NAME="Play" VALUE="0">';
	objTag += '<PARAM NAME="Loop" VALUE="-1">';
	objTag += '<PARAM NAME="Quality" VALUE="High">';
	objTag += '<PARAM NAME="SAlign" VALUE="">';
	objTag += '<PARAM NAME="Menu" VALUE="-1">';
	objTag += '<PARAM NAME="Base" VALUE="">';
	objTag += '<PARAM NAME="AllowScriptAccess" VALUE="sameDomain">';
	objTag += '<PARAM NAME="Scale" VALUE="ShowAll">';
	objTag += '<PARAM NAME="DeviceFont" VALUE="0">';
	objTag += '<PARAM NAME="EmbedMovie" VALUE="0">';
	objTag += '<PARAM NAME="BGColor" VALUE="FFFFFF">';
	objTag += '<PARAM NAME="SWRemote" VALUE="">';
	objTag += '<PARAM NAME="MovieData" VALUE="">';
	objTag += '<PARAM NAME="SeamlessTabbing" VALUE="1">';
	objTag += '<PARAM NAME="Profile" VALUE="0">';
	objTag += '<PARAM NAME="ProfileAddress" VALUE="">';
	objTag += '<PARAM NAME="ProfilePort" VALUE="0">';
	objTag += '<embed src="flash/erin.swf" quality="high" wmode="transparent" bgcolor="#ffffff" width="850" height="330" name="hullo_intro" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
	objTag += '</OBJECT>';

	parent.innerHTML = objTag;
}
