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

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();
}