<!--

function openWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

function changeSelect(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function CountLeft(field, count, max) {
 // if the length of the string in the input field is greater than the max value, trim it
 if (field.value.length > max)
 field.value = field.value.substring(0, max);
 else
 // calculate the remaining characters
 count.value = max - field.value.length;
}
//-->