function javaCheck () {

minVersion = '1.4.2'
    var Java = PluginDetect.isMinVersion('Java', minVersion);
	var newHTML = "<div style='padding:10px; width:400px; background-color:#eeeeee; border: 1px solid #666666;'><p align='center' style='color:#FF0000'>Java is not installed/enabled!</p><p>The signature capture utility cannot run because either a recent version of Java is not installed, or Java is disabled in your browser.</p><p>We are required to capture a copy of your signature for legal authorisation.</p><p>Click <a href='http://java.com' style='color:#0000FF'>Here</a> to install the latest version of Java.</p></div>";

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

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

}
};