function setHigh(){
var myHeight = 600;
if(typeof(window.innerHeight) == 'number'){
	myHeight = window.innerHeight;
}else if( document.documentElement && document.documentElement.clientHeight) {
	//IE 6+ in 'standards compliant mode'
	myHeight = document.documentElement.clientHeight;
}else if(document.body && document.body.clientHeight) {
	//IE 4 compatible
	myHeight = document.body.clientHeight;
}
document.getElementById('holder').height = myHeight - 130; //not 125 to prevent overflow
document.getElementById('holder').width = 1;
}

// LINK HIGHLIGHTER
function linkclick(thing){
	document.getElementById(thing).style.background = "#CCCCCC";
	document.getElementById(thing).style.color = "#FF0000";
}

function flashdetect(){
	if (navigator.plugins && navigator.plugins.length){
		if (navigator.plugins["Shockwave Flash"] || navigator.plugins["Shockwave Flash 2.0"]){
			return true;
		}
	}else if (navigator.mimeTypes && navigator.mimeTypes.length){
		x = navigator.mimeTypes['application/x-shockwave-flash'];
		if (x && x.enabledPlugin)
			return true;
	}
	return false;
}

function eolasPlusMSEqualsEvil(){
	document.write('<!--url\'s used in the movie-->');
	document.write('<a href="news.php"></a>');
	document.write('<a href="index.php"></a>');
	document.write('<a href="research.php"></a>');
	document.write('<a href="publications.php"></a>');
	document.write('<a href="people.php"></a>');
	document.write('<a href="links.php"></a>');
	document.write('<!--text used in the movie-->');
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="750" height="125" id="liulab" align="top">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="liulab.swf" />');
	document.write('<param name="menu" value="false" />');
	document.write('<param name="quality" value="best" />');
	document.write('<param name="bgcolor" value="#FFFFFF" />');
	document.write('<embed src="liulab.swf" menu="false" quality="best" bgcolor="#FFFFFF" width="750" height="125" name="liulab" align="top" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}