<!--

function playMed()
{

	var top = (screen.height/2)-(700/2);
	var left = (screen.width/2)-(830/2);

MedWin=window.open('','play','height=620,width=820,resizable=0,dialog=yes, top=' + top + ', left=' + left);
	var tmp = MedWin.document;
	tmp.write('<html>');
	tmp.write('<head>');
	tmp.write('<title>Epsilon Wormhole Puzzles</title>');
	tmp.write('<META NAME="ROBOTS" CONTENT="NOINDEX,FOLLOW">');
	tmp.write('</head>');
	tmp.write('<body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0">');
	tmp.write('<center><span style="position:relative;top:0px">');
	tmp.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" name="Flash Game" width="800" height="600" id="Flash Game">');
	tmp.write('<PARAM NAME=wmode VALUE="opaque">');
	tmp.write('<param name="movie" value="http://brain-games.memory-improvement-tips.com/epsilon/epsilon.swf">');
	tmp.write('<param name="quality" value="high">');
	tmp.write('<embed wmode=opaque src="http://brain-games.memory-improvement-tips.com/epsilon/epsilon.swf" width="800" height="600" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" name="Flash Game"></embed>');
	tmp.write('</object>');
	tmp.write('</span></center>');
	tmp.write('</body>');
	tmp.write('</html>');
	tmp.close();
}


var state = 'none';
function showHideEmbed() {
	if (state == 'block') {
		state = 'none';
	} else {
		state = 'block';
	}
	if (document.all) { //IS IE 4 or 5 (or 6 beta)
		eval( "document.all.embedDiv.style.display = state");
	}
	if (document.layers) { //IS NETSCAPE 4 or below
		document.layers.embedDiv.display = state;
	}
	if (document.getElementById &&!document.all) {
		hza = document.getElementById('embedDiv');
		hza.style.display = state;
	}
}


//-->
