// change the link on the SmugMug Logo

YE.onAvailable('homelink', function(e) {

this.href = "http://www.photosbygarbot.com/";

this.firstChild.alt = "Photos By Garbot";

this.firstChild.title = "Photos by Garbot";

});

// removes the pipes characters in the toolbar header

YE.onAvailable('toolbar', function(e) {

this.innerHTML = this.innerHTML.replace(new RegExp(/\|/g),"");

});


function openWindow(name) {
	options = "toolbar=no,status=no,menubar=no,scrollbars=no," + "resizable=no,width=550,height=600";    
	newwindow=window.open(name,"", options);
	newwindow.document.close();
	window.name='gallery';
}
// -->
