<!--
// displays the error box with the assigned message

function displayMessage(divid, msgtxt, divclass){
    if (document.getElementById) {
        mlayer = document.getElementById(divid);
        if (divclass != null){
            mlayer.className = divclass;        
        }
        mlayer.innerHTML = msgtxt;
    }
    else if (document.all) { //IS IE 4 or 5 (or 6 beta)
        eval("document.all." + divid + ".style.display = 'block'");
        document.all[divid].innerHTML = msgtxt;
    }
    else if (document.layers) { //IS NETSCAPE 4 or below
    	with(document.layers[divid].document){
            open();
            write(msgtxt);
            close();
      	}

    }    
}

// -->