function RunFlashContent()
{
    var oeTags = '<center><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="600" height="560"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="epicenter.swf" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="scale" value="noscale" /><param name="bgcolor" value="#bfbdb6" />'
    + '<embed src="epicenter.swf" loop="false" menu="false" quality="best" scale="noscale" bgcolor="#bfbdb6" '
    + 'width="600" height="560" name="epicenter" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object><\/center>';
    document.write(oeTags);   // embed the flash movie
}

function openNewWindow(myURL) {
	

		var myLeft = ((screen.width-400)/2);
		var myTop = ((screen.height-250)/2);
		var features = 'left=' + myLeft + ', top=' + myTop + ', toolbar=no, directories=no, location=no, status=yes, menubar=no, resizable=no, scrollbars=no, width=400, height=250';
		
		window.open(myURL, "TheEpicenterChurch", features)
}

