/************************************************************
* AUTHOR:		Kevin K. Nelson								*
* DOMAIN:		www.flashfiredesigns.com					*
* POP-UP WINDOW SCRIPT										*
*															*
* Copyright 2002, Kevin K. Nelson.  All Rights Reserved.	*
*   *** NOT TO BE USED WITHOUT EXPRESS PERMISSION ***		*
************************************************************/

var g_popUpWindow;
////////////////////////////////////////////
// CALL A 600x800 WINDOW AND SEND IT TO THE
// URL DEFINED IN THE PARAMETER.
function popUp(p_strURL) {

	// SO THAT WE'RE ALWAYS OPENING THE SAME WINDOW
	// CHECK TO MAKE SURE THAT THE WINDOW DOESN'T
	// EXIST OR IS CLOSED BEFORE WE MAKE A NEW ONE
	if(!g_popUpWindow || g_popUpWindow.closed) {
		g_popUpWindow				= window.open(p_strURL, "g_popUpWindow", "status, scrollbars, resizable, width=500, height=350");
		if(!g_popUpWindow.opener) {
			g_popUpWindow.opener	= window;
		}
	}
	else {

		// IT WAS ALREADY CREATED AND SHOULD BE IN 
		// THE BACKGROUND SO CHANGE THE URL AND
		// GIVE THE WINDOW FOCUS
		g_popUpWindow.location.href	= p_strURL;
		g_popUpWindow.focus();
	}
}