/*--------------------------------------------------
  © 2005 Christopher B. Zenner. All rights reserved.
  
                        NOTICE
  This source code may be used freely provided that
  it is not modified or distributed.
  
  Script Name: Pop Up!
  --------------------------------------------------*/

function popup(url, target, width, height, decor) 
{
	if (!url)
		return;

	width = width || 800;
	height = height || 600;

	if (!decor || decor == 'on')
		decor = ",menubar=yes,toolbar=yes,location=yes,status=yes,scrollbars=yes,resizable=yes";
	else
		decor = ",menubar=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes";
	
	newWindow = window.open(url, target, "width=" + width + ",height=" + height + decor);

	newWindow.focus();
}