function textCounter(field, countfield, maxlimit) {

	if (field.value.length > maxlimit) // if too long...trim it!
		field.value = field.value.substring(0, maxlimit);
	// otherwise, update 'characters left' counter
	else 
		countfield.value = maxlimit - field.value.length;
}

function WorkingOnIt() {
	alert("Links in red are down at this moment while we are upgrading.  We will have them up as soon as possible.  You are welcome to proceed and try out as many functions as you want.   Sorry for the inconvenience.  Thank you.");
	return false;	
}

function displaypicture() {
	alert("Picture display");
}

function nextpicture() {
	alert("Next Picture");
}

function alertUser() {
	alert("What did you expect?  A sandwich?");
}

function ChangeColor($_color) {
}

function aboutusload() {
	testwindow= window.open ("./aboutus.php", "aboutuswindow",
    "location=no, resizable=no, width=400, height=400");
	testwindow.moveTo(100,100);
}
