function popup( page, width, height, resize )
{
  if (!resize)
  {
  	resize = 'no';
  }

  window.open( page, 'popup', 'toolbar=no,menubar=no,location=no,directories=no,status=no,scrollbars=no,resizable=' + resize + ',copyhistory=no,width=' + width + ',height=' + height + '');
}

function boxConfirm(boxtext)
{
	if (window.confirm(boxtext)) {
		return true;
	}
	
	return false;
}