function mOvr(src,clrOver) {
  if (!src.contains(event.fromElement)) {
    src.style.cursor = 'hand'; src.bgColor = clrOver;
  }
}

function mOut(src,clrIn) {
  if (!src.contains(event.toElement)) {
    src.style.cursor = 'default';
    src.bgColor = clrIn;
  }
}

var win=null;

function openWin(strURL, dWidth, dHeight){
	var popLeft = 0, popTop = 0;
	if(screen.width) popLeft = (screen.width - dWidth) / 2;
	if(screen.height) popTop = (screen.height - dHeight) / 2;

	newapp = open(strURL,"What_it_is","resizable=1,status=350,location=0,scrollbars=1,width=" + dWidth + ",height=" + dHeight + ",left=" + popLeft + ",top=" + popTop);
	if(navigator.appName == "Netscape")
		newapp.focus();
}

function textCounter(field, countfield, maxlimit) {
	if (field.value.length > maxlimit) // if too long...this trims it!
	field.value = field.value.substring(0, maxlimit);
	// otherwise, update 'characters left' counter
	else
	countfield.value = maxlimit - field.value.length;
}