
function makeApplet(divID, jarName, codeName, width, height) {

	var contents = "<object archive=\""+jarName+"\" ";
	contents += "type=\"application/x-java-applet\" ";
	contents += "code=\""+codeName+"\" ";
	contents += "width=\""+width+"\" ";
	contents += "height=\""+height+"\">";
	contents += "It appears you do not have the latest version of Java installed. This applet requires the Java Standard Edition, Java Runtime Environment 5.0. (JSE JRE 1.5.0) You can head to <a href=\"http://java.sun.com\">java.sun.com</a> to download the JRE.";
	contents += "</object>";

	document.getElementById(divID).innerHTML = contents;
}