//Evening Illusions Order Page ei0.js, for document interfacing
// copyright 2009 Tom Rogers
function elmId(inElmNm) {
  if (document.getElementById) {
    return document.getElementById(inElmNm);
  }
  else {
    if (document.all) {
      return document.all[inElmNm]
    }
    else {
      if (document.layers) {
	return document.layers[inElmNm];
      }
      else {
	alert("**error: browser is not complying");
	return null;
      }
    }
  }
}

