function openDetail(href) {

  var width = 600;
  var height = 700;
  var left = Math.floor((screen.width - width)/2);
  var top = Math.floor((screen.height - height)/2);

  newWindow=window.open(href,'','toolbar=no,width='+width+',height='+height+',top='+top+',left='+left+',scrollbars=no');
  if (newWindow) {
    if (parseInt(navigator.appVersion) >= 4) { newWindow.focus(); }
    return false;
  }
  return true;
}


