//escape out of frames
//function removeFrame() {
   if (window != top) {
      top.location.href = location.href;
   }
   if (self.location != top.location) {
      top.location = self.location;
   }
//}

function setFocus() {
   document.frmSearch.search.focus();
}