//add simple scritps here

// changes text in input fields
function settextfield(objId,x,newText) { //v9.0
  with (document){ if (getElementById){
    var obj = getElementById(objId);} if (obj) obj.value = newText;
  }
}


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