var OldColor = "#FFCC99";

if(top!=self) {
  top.location = self.location;
}

function FlashOn(Row) {
  OldColor = Row.bgColor;
  Row.bgColor="#cc6666";
}

function FlashOff(Row) {
  if (OldColor != "") {
    Row.bgColor = OldColor;
  }
  else {
    Row.bgColor="#FFCC99";
  }
}
		
function GoNow(NewHref) {
  if (NewHref != "") {
    document.location.href=NewHref;
  }
}
