  // unused
  function submittedForm13() {
    var showformornot = document.getElementsByName('showform');
    showformornot.onsubmit = function() {
      document.englishform13.showform.value = 1;
      alert(document.englishform13.showform.value);
    }
  }


  function showSecondBlock () {
    var e = 0;
    radioLength = document.englishform13.attribute92.length;
    radioBut = document.englishform13.attribute92;
    if(radioBut[1].checked) {
      document.getElementById('continue-block').style.visibility = 'hidden';
      document.getElementById('second-block').style.visibility = 'visible';
      document.getElementById('second-block-title').style.visibility = 'visible';
      document.getElementById('second-block-submit').style.visibility = 'visible';
      document.getElementById('submit_personal_button').style.visibility = 'visible';
    } else if (radioBut[0].checked) {
      document.getElementById('continue-block').style.visibility = 'visible';
      document.getElementById('second-block').style.visibility = 'hidden';
      document.getElementById('second-block-title').style.visibility = 'hidden';
      document.getElementById('second-block-submit').style.visibility = 'hidden';
      document.getElementById('submit_personal_button').style.visibility = 'hidden';
    }
  }

  function uncheckattr92() {
    radioLength = document.englishform13.attribute92.length;
    radioBut = document.englishform13.attribute92;
    radioBut[0].checked = 0;
    radioBut[1].checked = 0;
  }
/****************************************/
/* links that will open in a new window */

function findPopUps() {
  var popups = document.getElementsByTagName("a");
  for (i=0;i<popups.length;i++) {
    if (popups[i].rel.indexOf("popup")!=-1) {
    // attach popup behaviour
      popups[i].onclick = doPopUp;
    // add popup indicator
    // add info to title attribute to alert fact that it's a pop-up window
    }
  }
}

function doPopUp(e) {
  //set defaults - if nothing in rel attrib, these will be used
  var t = "fullscreen";
  var w = "820";
  var h = "580";
  //look for parameters
  attribs = this.rel.split(" ");
  if (attribs[1]!=null) {t = attribs[1];}
  if (attribs[2]!=null) {w = attribs[2];}
  if (attribs[3]!=null) {h = attribs[3];}
  //call the popup script
  popUpWin(this.href,t,w,h);
  //cancel the default link action if pop-up activated
  if (window.event) {
    window.event.returnValue = false;
    window.event.cancelBubble = true;
  }
  else if (e) {
    e.stopPropagation();
    e.preventDefault();
  }
}

function popUpWin(url, type, strWidth, strHeight) {
//  closeWin(); 
  //calls function to close pop-up if already open, 
  //to ensure it's re-opened every time, retainining focus
  type = type.toLowerCase();
  if (type == "fullscreen") {
/*    strWidth = screen.availWidth;
    strHeight = screen.availHeight;
*/  }
  var tools="";
  if (type == "console" || type == "fullscreen") {
    tools = "resizable,toolbar=no,location=no,scrollbars=yes,width="+strWidth+",height="+strHeight+",left=0,top=0";
  }
  newWindow = window.open(url, '', tools);
  newWindow.focus();
}
//newWin