<!--
function openNewWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function checkAll(field)
{
    for (i = 0; i < field.length; i++)
	field[i].checked = true;
}

function uncheckAll(field)
{
    for (i = 0; i < field.length; i++)
	field[i].checked = false;
}

function resetMenus() {
    
    for (i = 0; i < document.myForm.elements.length; i++) {
	if (document.myForm.elements[i].type == "select-one") {
	    //    alert('at here');
	    document.myForm.elements[i].selectedIndex = 0;
	}
    }
    return;
}
//-->

