
function errorLabel(fieldName, isError, errorMsg) {
	var oLabel 	= document.getElementById("l_" + fieldName);
	var oMsg 	= document.getElementById("e_" + fieldName);
	if (isError == true) {
		oLabel.style.color = "#990000";
		oLabel.style.fontWeight = "bold";
		oMsg.innerHTML = errorMsg;
	}
	else {
		oLabel.style.color = "";
		oLabel.style.fontWeight = "";
		oMsg.innerHTML = errorMsg;
	}
}


function openWin(newURL, windowName) {
	window.open(newURL,windowName,"scrollbars=yes,resizable=true"); //height=500,width=700,
}

function imageSwitch(obj, img) {
	if (obj.setAttribute) {
		obj.setAttribute("src", img);
	}
}