function newWindow(url, w, h) {
	window.open(url,"popupthing","width="+w+",height="+h+",status=yes");
	return false;
}

function merchPopup(picfile) {
	window.open('slideshow.php?pic=' + picfile,'largepic','toolbar=no,location=no,directories=no,status=yes,scrollbars=yes,menubar=no,resizable=yes,copyhistory=no,width=400,height=400');
}

// These are the navigation on buttons
	img1on = new Image();           
	img1on.src = "http://www.buttholesurfers.com/img/dryhomered.gif";  

	
// These are the navigation off buttons
	img1off = new Image();           
	img1off.src = "http://www.buttholesurfers.com/img/dryhome.gif";  

	
	// This function is responsible for MouseOver events
	function On(imgname) {
		if(document.images) {
			document[imgname].src=eval(imgname+"on.src");
		}
	}
	
	// This function is responsible for MouseOut events
	function Off(imgname) {
		self.status=' ';
		if(document.images) {
			document[imgname].src=eval(imgname+"off.src");
		}
	}





