// Part 3 of Flash Version detect
/*make variable flashlow exist if version in users browser is less than what's needed*/
var flashtoolow = flashversion < flashneeded;
/*if Flash Player is too low, write the following message to the page where it is called*/
function altext()
{
if (flashtoolow)
	{
		document.write('<div id="instr" class="btn">You have Flash Player version ' + flashversion + ' installed.  You need Flash Player ' + flashneeded + ' or higher to make animations like the one below work properly.<p>Please <a href="http://www.macromedia.com/go/getflashplayer" target="_blank">click here</a> to download the latest Flash Player to see all the animations that will help you learn about cancer.  Yes, getting plug-ins is a pain, but I promise it will be worth it!</p><a href="../../../index/pages/getflashinstr.htm" target="_blank">Click here</a> if you need help or more information about getting Flash Player. </div>');
	};
};
