// Status messages

msd = "Mustard Seed";
hpage = "Back to the " + msd + " homepage";

window.defaultStatus = msd ;
window.status = msd ;

// Common status functions

function homepage() {window.status=hpage;}
function mstdsd() {window.status=msd;}

// Browser capability flags

Dom2 = (document.getElementById) ? true : false;
IE4 = (Dom2 || !document.all) ? false : true;
NS4 = (Dom2 || !document.layers) ? false : true;

var imageOn = (NS4) ? "show" : "visible";
var imageOff = (NS4) ? "hide" : "hidden";
