function hideAll(t) {
  for (i=0; i<t; i++) {  
    var namer = 'detail' + (i+1);
    // if DOM-compliant browser...
    if (document.getElementById) { 
      document.getElementById(namer).style.display='none';
    }
    // else if IE (specifically ie4, ie5?)
    else if (document.all) {
      document.all(namer).style.display='none';
    }
  }
}

function show(x,t) {
	hideAll(t);
  var namer = 'detail' + x;
  document.getElementById(namer).style.display='block';
}

function openHE() {
  window.open("http://www.highendappliance.com", "", "height=600,width=800,scrollbars=1,resizable=1,status=1,menubar=1,toolbar=1,location=1");
  }
    
function openWin(loc,nom,h,w) {
  var str = "height=" + h + ",width=" + w +",scrollbars=1,resizable=1,status=0,menubar=0,toolbar=0,location=0";
  window.open(loc, nom, str);
}
	