<!-- ********************************************************************************* --> 
<!-- *                            ACTIVATE CLOAKING DEVICE                           * --> 
<!-- ********************************************************************************* -->

<!-- ********************************************************************************** -->
<!-- *                                 The Window Opener                              * -->
<!-- *                                                                                * -->
<!-- * This routine will open a new window (browser) passing the window url and the   * -->
<!-- * window parameters.                                                             * -->
<!-- *                                                                                * -->
<!-- * Use the following syntax example.                                              * -->
<!-- *                                                                                * -->
<!-- * <A onClick = "createNewWindow('http://www.asciitechnologies.com/default.asp',  * -->
<!-- *              'MyNewWindow', 'toolbar=yest,menu=yes,scrollbars=yes,status=yes,  * -->
<!-- *                             resizable=yes,width=550,height=525,left=260,       * -->
<!-- *                             top=50'                                            * -->
<!-- *                                                                                * -->
<!-- * Copyright (c) 2001 Ascii Technologies. All Rights Reserved.                    * -->
<!-- *                                                                                * -->
<!-- ********************************************************************************** --> 

var newWindow

function createNewWindow(strPageToOpen, winName, winFeatures)
{
	// If the window is not open, then open a new window
	if (!newWindow || newWindow.close)
	{
		newWindow = window.open(strPageToOpen, winName, winFeatures)
	}
		// If the window is already open, the set focus to it
	else	{
		newWindow.location.href = strPageToOpen
	}
	// Set focus to the New Window	
	newWindow.focus();
}

<!-- ********************************************************************************* --> 
<!-- *                            DEACTIVATE CLOAKING DEVICE                         * --> 
<!-- ********************************************************************************* -->
