// Bootstrap code (only currently used for decompression)
// $Id: boot.js.in,v 1.2 2000/07/13 19:27:53 sirott Exp $
top.boot = new Object();
top.boot.doDecompress = false;

function canDecompress(applet) {
    var hasCompress = false;
    if (top.boot.doDecompress){
	if (applet == null){
	    top.location="nojava.html";
	    return;
	}
	hasCompress = applet.canDecompress();
    }
    return hasCompress;
}
