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

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