// Window management utilities
// Copyright 2000 by reactivity, inc.
// author: mikel evins
// Version 1.0 -- 4/06/00

// Supports Netscape and IE, versions 4.x and greater, only
// 
// NOTE: Remove all comments before publishing to minimize
// client download time

// ========================================================
// Modification History
// ========================================================
//
//  4/ 6/00 -- mle -- Initial HTML/JavaScript code

// ========================================================
// REQUIREMENTS
// ========================================================
// Requires: None
	
// ========================================================
// PROVIDES
// ========================================================
// function isOpenerPresent()
// function openLinkInOpenerOrNewWindow(url)
	
// ========================================================
// GENERAL UTILITY
// ========================================================

function isOpenerPresent()
{
    if (window.opener != null)
    {
	return true;
    } else {
	return false;
    }
}

function openLinkInOpenerOrNewWindow(url)
{
    if (isOpenerPresent())
    {
	window.open(url, window.opener.name);
    } else {
	window.open(url);
    }
}