/***********************************************************************
*	MAIN.JS
*  
*	(c) 2005 Walker Art Center - Brent Gustafson
***********************************************************************/

var pageTotal = 0;

function searchGo(url,val) {
	if ((val > 0) && (val <= pageTotal)) document.location = url + val;
	else return false;
}

function popup(url,width,height) {
	var properties = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=" + width + ",height=" + height;
	var myPopup = window.open(url, "myPopup", properties);
	myPopup.focus();
}