<!--
function sf(){document.forms[0].q.focus(); document.forms[0].q.backgroundColor="#000"}
function addEvent(elm, evType, fn, useCapture)
// make button shade display on IE
{
  if (elm.addEventListener){
    elm.addEventListener(evType, fn, useCapture);
    return true;
  } else if (elm.attachEvent){
    var r = elm.attachEvent("on"+evType, fn);
    return r;
  } else {
    alert("Handler could not be removed");
  }
} 
function prepareTextBoxes(){
 if (!document.getElementsByTagName) return;
 var oi=0;
 var thisObj;
 var objs = document.getElementsByTagName("input");
 for (oi=0;oi<objs.length;oi++) {
  thisObj = objs[oi];
  if(thisObj.getAttribute('type') == 'submit'){
   thisObj.className = 'text ' + thisObj.className;
  }
 }
}
addEvent(window, "load", prepareTextBoxes);
// -->
