<!--hide
var UniqueNames = new Object();
  UniqueNames.Index = 0;
  UniqueNames.Start = "IE1299HQ";
  UniqueNames.current = CurrentName;
  UniqueNames.next = NewName;
function CurrentName(){
  return this.Start+this.Index;
}
function NewName (){
  this.Index++;
}
var ObjIndex = 0;
var ObjStart = "IE398HQ";
function newName () {
   ObjIndex++;
}
function curName () {
   return ObjStart+ObjIndex;
}
// unhide -->