<!-- Begin

function right(e) {
var msg = "All pictures are © Mark Salter";
if (navigator.appName == 'Netscape' && e.which == 3) {
  alert(msg);
  return false;
}
  if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
  alert(msg);
  return false;
}
  else return true;
}



function trap()
  {
  if(document.images)
    {
    for(i=0;i<document.images.length;i++)
      {
      document.images[i].onmousedown = right;
      document.images[i].onmouseup = right;
      }
    }
  }



function newWindowPortrait(bigPix)
 {
  winContent = window.open(bigPix, 'Pix', 'right=0, top=20, width=350, height=450, status=no, toolbar=no, scrollbars=no, resizable=no')
 }



function newWindowLandscape(bigPix)
 {
  winContent = window.open(bigPix, 'Pix', 'right=0, top=20, width=440, height=340, status=no, toolbar=no, scrollbars=no, resizable=no')
 }



function enlargePix(oURL, pheight, pwidth)
 {
  dims = "right=0, top=20, width=" + pwidth + ", height=" + pheight + ", status=no, toolbar=no, scrollbars=no, resizable=no";
  winContent = window.open(oURL, 'Gallery', dims)
 }



function newWindow(page)
 {
  winContent = window.open(page, 'Pix', 'right=0, top=20,width=550, height=300, status=no, toolbar=no, scrollbars=no, resizable=no')
 }
 
function goArea(o) {
	var divnames = new Array('africa', 'alps', 'america', 'uk', 'nepal');
	for (var i = 0 ; i < divnames.length; i++) {
		//hide layer...
		eval('document.all.' + divnames[i] + '.style.display = \'none\'');
	}
	var area = o.value;
	if (area.length > 0) {
		eval('document.all.' + area + '.style.display = \'\'');}
}



// End -->