
document.write("<em><font size='-1'>Autumn 2004</font></em>");
document.write("<br><br>");
document.write("<h3>LIS 541</h3>");
document.write("<h3>Internet Technologies and Applications</h3>");

/*
Browser detection
*
*
*
*/

var e = navigator.userAgent;
var f = e.toLowerCase();


if ( (f.indexOf("gecko") != -1) || (f.indexOf("opera") != -1) )
{
	alert("   Developed with Internet Explorer \n   Page elements may not work with other browsers");
}

/*
Functions to manage display of sections of page
*
*
*/


function showInsert(name) {
	 
	 var e;
	 
	 e = document.getElementById(name);
	 e.style.display="block";
}
	
function hideInsert(name) {
	 
	 var e;
	 
	 e = document.getElementById(name);
	 e.style.display="none";
}
	
	