function popup( target )
{
  obj = window.open( target, 'name', 'height=800,width=450,resizable=yes,scrollbars=yes' );
	if ( window.focus )
	  obj.focus()
	return false;
}