
<!-- Beginning of JavaScript Applet and hide from old browsers -----
function frameThis()
{
  var loc_file = "http://www.microcaddesign.com/books/catalog.html";
  // FIRST LOOP - Browsers that support 'top.location'.
  if (top.location) {
     if (self == top) top.location = loc_file;
  } else {
  // SECOND LOOP - Browsers that don't support 'top.location'.
  if (parent.location) {
     if (parent.location != loc_file) parent.location = loc_file;
  }
  }
  return;
}
// - End of JavaScript code and done hiding -->