function initMe() {
document.forms['deviceget'].D1.disabled = false;

document.getElementById("otherPara").style.display = "block";

//include below if linking to PDADB; could not call this function from ilium.js
//because there is already an onload function being called on this page
var links = document.getElementsByTagName('a');
  for (var i=0;i < links.length;i++) {
    if (links[i].className == 'new-window') {
        links[i].onclick = function() {
         window.open(this.href);
                return false; };
    }
  }
}


function showOthr (a) {
	if(a=="othr") {
	document.getElementById("suggestions").style.display = "block";
  }
}