function javaCheck () {

minVersion = '1.4.2'
    var Java = PluginDetect.isMinVersion('Java', minVersion);
	var newHTML = "<div style='font-size:larger; font-weight:bold; padding:15; height:207; width:580; background-color:#FFFF00'><h2 align='center' style='color:#FF0000'>Java is not installed/enabled!</h2>The WebPen online signature utility cannot run because either a recent version of Java is not installed, or Java is disabled in your browser.<br /><br /> Click <a href='http://java.com' style='color:#0000FF'>Here</a> to install the latest version of Java.<br /></div>";

if (Java == -1) { // JavaMin is false

		document.getElementById('signbox').innerHTML = newHTML;

}
};