function appletOBJava(width, height, code, archive) {
try {
	document.write ('<applet code="' + code + '" name="Sim" width="' + width + '" height="' + height + '" archive="' + archive + '">');
	document.write ('</applet>');
}catch(e){}
}

function appletMagOBJava(targetClass) {
try {
	document.write ('<applet code="physicon.magTool.MagTool" name="MagTool" height="1" width="1">');
	document.write ('<param name="TargetAppletClass" value="'+targetClass+'">');
	document.write ('<param name="MagType" value="MAXCON">');
	document.write ('</applet>');
}catch(e){}
}