function clearErrorMessages(form) {
	// clear out any rows with an "errorFor" attribute
	var divs = form.getElementsByTagName("div");
    var paragraphsToDelete = new Array();

    for(var i = 0; i < divs.length; i++) {
        var p = divs[i];
        if (p.getAttribute("errorFor")) {
            paragraphsToDelete.push(p);
			// alert("found: " + p.id);
        }
    }

    // now delete the paragraphsToDelete
    for (var i = 0; i < paragraphsToDelete.length; i++) {
        var r = paragraphsToDelete[i];
		// alert("remove: " + r.id);
		if(r && r.parentNode) {
	        var parent = r.parentNode;
	        parent.removeChild(r);
			// alert("removed");
		}
    }
}

function clearErrorLabels(form) {
    // set all labels back to the normal class
    var labels = form.getElementsByTagName("label");
    for (var i = 0; i < labels.length; i++) {
        var label = labels[i];
        if (label) {
            if(label.getAttribute("class") == "errorLabel"){
                label.setAttribute("class", "label");//standard way.. works for ie mozilla
                label.setAttribute("className", "label"); //ie hack cause ie does not support setAttribute
            }
        }
    }

}

function addError(e, errorText) {
    try {
        var ctrlDiv = e.parentNode; // wwctrl_ div or span
        var enclosingDiv = ctrlDiv.parentNode; // wwgrp_ div

		if (!ctrlDiv || (ctrlDiv.nodeName != "DIV" && ctrlDiv.nodeName != "SPAN") || !enclosingDiv || enclosingDiv.nodeName != "DIV") {
			alert("do not validate:" + e.id);
			return;
		}
		
        var label = enclosingDiv.getElementsByTagName("label")[0];
		if (label) {
	        label.setAttribute("class", "errorLabel"); //standard way.. works for ie mozilla
	        label.setAttribute("className", "errorLabel"); //ie hack cause ie does not support setAttribute
	    }

		var enclosingErrorDiv= document.getElementById('wwerr_' + e.id);
		if (!enclosingErrorDiv) {
			var firstDiv = enclosingDiv.getElementsByTagName("div")[0]; // either wwctrl_ or wwlbl_
			if (!firstDiv) {
				firstDiv = enclosingDiv.getElementsByTagName("span")[0];
			}
			enclosingErrorDiv= document.createElement("div");
			enclosingErrorDiv.setAttribute("class", "wwerr");
			enclosingErrorDiv.setAttribute("className", "wwerr");
			enclosingErrorDiv.setAttribute("errorFor", e.id);
			enclosingErrorDiv.id= "wwerr_" + e.id;
			// alert("created: " + enclosingErrorDiv.id);
			enclosingDiv.insertBefore(enclosingErrorDiv, firstDiv); 
		}
		
        var error = document.createTextNode(errorText);
        var errorDiv = document.createElement("div");

        errorDiv.setAttribute("class", "errorMessage");//standard way.. works for ie mozilla
        errorDiv.setAttribute("className", "errorMessage");//ie hack cause ie does not support setAttribute
        errorDiv.setAttribute("errorFor", e.id);
        errorDiv.appendChild(error);
        enclosingErrorDiv.appendChild(errorDiv);
    } catch (e) {
        alert(e);
    }
}



