function getStyleObject(objectId) {
  // checkW3C DOM, then MSIE 4, then NN 4.
  //
  if(document.getElementById && document.getElementById(objectId)) {
        return document.getElementById(objectId).style;
   }
   else if (document.all && document.all(objectId)) {  
        return document.all(objectId).style;
   } 
   else if (document.layers && document.layers[objectId]) { 
        return document.layers[objectId];
   } else {
        return false;
   }
}

function mouseOverHighlight(i) {
	i.style.backgroundColor='#FFDEE9';
	i.style.border = "1px dotted #999";
}

function mouseOutReg(i) {
	i.style.backgroundColor='#ffffff';
	i.style.border = "1px solid #fff";
}
