/*
//#############################################################################
// popup.js
//
// Last update: 12 Jun 2007
// Updated by: Russell S. Ahlstrom
//
//#############################################################################
*/

function popup(url) {
	popupWindow = window.open(url, "popupwin", "width=500,height=500,scrollbars");
	popupWindow.focus();
}