/* =============================================================================
 * Name        : helper.js
 * Created By  : Burke's Consulting, Copyright 2002
 * Description :
 * History:
 * Date        Who             What
 * ----------  --------------- -------------------------------------------------
 * 01/05/2002  F. Burke        Crated initial version
 */

var win

function openDep(arg)
{
  win = window.open(arg, "", "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,height=600,width=620");
  win.document.onmouseup=click
  win.document.onmousedown=click
}

function closeDep()
{
  if (win && win.open && !win.closed) win.close();
}

function click() 
{
  if (event.button==2 || event.button==1+2 || event.button==2+1) 
  {
    alert('© 2002  Chandler Creative Photography, Inc. All rights reserved.')
  }
}
document.onmouseup=click
document.onmousedown=click

