function BrowserCheck() {  var b = navigator.appName  if (b=="Netscape") this.b = "ns"  else if (b=="Microsoft Internet Explorer") this.b = "ie"  else this.b = b  this.v = parseInt(navigator.appVersion)  this.ns = (this.b=="ns" && this.v>=4)  this.ns4 = (this.b=="ns" && (this.v==4 || this.v==5))  this.ns5 = (this.b=="ns" && this.v==5)  this.ie = (this.b=="ie" && this.v>=4)  this.ie4 = (navigator.userAgent.indexOf('MSIE 4')>0)  this.ie5 = (navigator.userAgent.indexOf('MSIE 5')>0)  if (this.ie5) this.v = 5  this.min = (this.ns||this.ie)}is = new BrowserCheck();function popupMenu(name) {  popdownMenu("jacketsMenu");  popdownMenu("pantsMenu");  if (is.ie) {    obj = document.all[name + "Div"];  } else if (is.ns5) {    obj = document.getElementById(name + "Div");  } else if (is.ns4) {    obj = document.layers[name + "Div"];  }  if (! obj) return;  if (is.ns5 || is.ie)    obj.style.visibility = "visible";  else    obj.visibility = "show";}function popdownMenu(name) {  if (is.ie) {    obj = document.all[name + "Div"];  } else if (is.ns5) {    obj = document.getElementById(name + "Div");  } else if (is.ns4) {    obj = document.layers[name + "Div"];  }  if (! obj) return;  if (is.ns5 || is.ie)    obj.style.visibility = "hidden";  else    obj.visibility = "hide";  MM_swapImage('jacketrollover','','images/jackets.gif',1);  MM_swapImage('pantrollover','','images/pants.gif',1);}// For Netscape 4 onlyfunction ns4MouseoutHandler(e) {  popdownMenu(e.target.name.replace(/Div$/,''));  window.routeEvent(e);}// For Netscape 5 onlyfunction ns5MouseoutHandler(e) {  var id = e.currentTarget.id;  if (! inMenu(e.rangeParent,id))    popdownMenu(id.replace(/Div$/,''));}// For IE onlyfunction ieMouseoutHandler(e) {  var id = e.id;  if (! inMenu(window.event.toElement.parentElement,id))    popdownMenu(id.replace(/Div$/,''));}function inMenu(obj,id) {  var found = false;  if (obj.id == id) found = true;  if (found) return found;  if (is.ie) {    if (obj.parentElement)      found = inMenu(obj.parentElement,id);  }  else if (is.ns5) {    if (obj.parentNode)      found = inMenu(obj.parentNode,id);  }  return found;}