/******************************************************************************
 *
 *	File:		popup.js
 *
 *	Copyright (c) 2000,2001 Digital Brook, LLC.
 *	All rights reserved.
 *
 *	Author:		Dave Hill
 *	
 *	Purpose:
 *
 *****************************************************************************/

function popupmail(name)
{
	popup = window.open("", name, "width=450,height=340")
}

function popupprint(name)
{
	popup = window.open("", name, "width=510,height=380")
}

function popuphelp(name)
{
	popup = window.open("", name, "width=510,height=380")
}

function popupwebmaster(href, name)
{
	popup = window.open(href, name, "width=450,height=410")
	return false;
}

function popup(link, name)
{
	if (! window.focus)
		return true;

	var href;
	if (typeof(link) == 'string')
		href=link;
	else
		href=link.href;
	
	window.open(href, name, "width=450,height=340");
	return false;
}				

