// JavaScript Document
<!--

function golocal(formname)
{
	var address = formname.options[formname.selectedIndex].value;
	location.href = address;
	address.selectedIndex=0;
}

//Makes buttons into links
function go(url) {
	location=url
}

//Place focus on first editable form field
function placeFocus() {
	if (document.forms.length > 0) {
	var field = document.forms[0];
	for (i = 0; i < field.length; i++) {
	if ((field.elements[i].type == "text") || (field.elements[i].type == "radio") || (field.elements[i].type == "checkbox") || (field.elements[i].type == "textarea") || (field.elements[i].type.toString().charAt(0) == "s")) {
	document.forms[0].elements[i].focus();
	break;
         }
      }
   }
}

//Pop up confirmation box
function popupconfirm(conmessage,dellocation)
{
 var where_to= confirm(conmessage);
 if (where_to== true)
 {
   window.location=dellocation;
 }
}
// -->
