function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

function rowOverEffect(object) {
  if (object.className == 'moduleRow') object.className = 'moduleRowOver';
}

function rowOutEffect(object) {
  if (object.className == 'moduleRowOver') object.className = 'moduleRow';
}

function ClearMe(){document.getElementById("Text1").value="";}
function ClearMe2(){document.getElementById("Text2").value="";}
function ClearMe3(){document.getElementById("Text3").value="";}
function ClearMe4(){document.getElementById("Text4").value="";}
function ClearMe5(){document.getElementById("Text5").value="";}
function ClearMe6(){document.getElementById("Text6").value="";}
function ClearMe7(){document.getElementById("Text7").value="";}
function ClearMe8(){document.getElementById("Text8").value="";}
