/***********************************************************************
*  MAIN.JS
*
*  (C) 2004 - Brent Gustafson - walkerart.org
***********************************************************************/ 


function go(place) {
	document.location = place;
}


function popup(url, width, height) {
	var properties = "resizable=yes,width=" + width + ",height=" + height;
	var myPopup = window.open(url, "myPopup", properties);
	myPopup.focus();
}