<!--
function popitup(url,name,wid,ht) {
        if (!ht) ht=680;
        if (!wid) wid=680;
	newwindow=window.open(url,name,"height="+ht+",width="+wid+",scrollbars=1,resizable=1");
	if (window.focus) {newwindow.focus()}
	return false;
}
function popits(url,name) {
	newwindow=window.open(url,name,'height=150,width=490,scrollbars=1,resizable=1,toolbar=1,location=1');
	if (window.focus) {newwindow.focus()}
	return false;
}
function popit2(url,name,wid,ht,ext) {
        if (!ht) ht=680;
        if (!wid) wid=680;
        newwindow=window.open(url,name,"height="+ht+",width="+wid+",scrollbars=1,resizable=1,"+ext);
        if (window.focus) {newwindow.focus()}
        return false;
}
function txtcnt(tid,cidnm,maxcnt) {
// Limit the number of characters per textarea, and keep count.
   var len = tid.value.length;
   if (len > maxcnt) {
      // too long...trim it!
      tid.value = tid.value.substring(0, maxcnt);
      len = maxcnt;
   }
   if (cidnm) {document.getElementById(cidnm).innerHTML = len};
}
// -->
