function infoWindow(docName, winName, winHeight, winWidth) {
	var height=winHeight;
	var width=winWidth;
	var features = "directories=0, height=" + height + ", width=" + width + ", location=0, menubar=0, resizable=1, scrollbars=1, status=0, toolbar=0, top=10, left=10";
	window.open(docName, winName, features);
}

// change the link on the SmugMug Logo
YE.onAvailable('homelink', function(e) {
  this.href = "http://markjohnston.smugmug.com/";
  this.firstChild.alt = "Mark Johnston - Photo Galleries";
  this.firstChild.title = "Mark Johnston - Photo Galleries";
});