// JavaScript Document



function swapPhoto(photoSRC) {
    document.images.imgPhoto.src = "http://www.uutensil.com/images/full_" + photoSRC;
    }
	
document.onclick = function(e)     //makes a new page for a hyper link. needs rel=external in hyperlink
{
  var target = e ? e.target : window.event.srcElement;

  while (target && !/^(a|body)$/i.test(target.nodeName))
  {
    target = target.parentNode;
  }

  if (target && target.getAttribute('rel')
      && target.rel == 'external')
  {
    var external = window.open(target.href);

    return external.closed;
  }
}