/**********************************************************
* File Name:  newWindow.js                                *
* Author:     Rob Seifert                                 *
* Date:       09/05/02                                    *
* Description:                                            *
*                                                         *
* Revisions:  Date - Name - what was done                 *
*                                                         *
*                                                         *
*                                                         *
'*********************************************************/

/***************************************************************
* Open a new web browser window with all the options passed in *
***************************************************************/
function openNewWindow(strURL, strWindowName, intScreenTop, intScreenLeft, intHeight, intWidth, boolResizable, boolToolbar)
{
	var objWindow;
	objWindow = window.open(strURL,strWindowName,"top=" + intScreenTop + ",left=" + intScreenLeft + ",width=" + intWidth + ",height=" + intHeight + ",menubar=no,resizable=" + boolResizable + ",scrollbars=yes,toolbar=" + boolToolbar);
}
/**************************************************************/

/**********************************************************************************************
* Open a new web browser window with all the options passed in and the print button available *
**********************************************************************************************/
function openNewPrintWindow(strURL, strWindowName, intScreenTop, intScreenLeft, intWidth, intHeight)
{
	var objPrintWindow;
	objPrintWindow = window.open(strURL,strWindowName,"top=" + intScreenTop + ",left=" + intScreenLeft + ",width=" + intWidth + ",height=" + intHeight + ",menubar=no,resizable=no,scrollbars=yes,toolbar=yes");
}
/*********************************************************************************************/

/**********************************************************************************************
* Open a new web browser window with all the options passed in and the print button available *
**********************************************************************************************/
function openNewNewsletterWindow(strURL, strWindowName, intScreenTop, intScreenLeft, intWidth, intHeight)
{
	var objNewsletterWindow;
	objNewsletterWindow = window.open(strURL,strWindowName,"top=" + intScreenTop + ",left=" + intScreenLeft + ",width=" + intWidth + ",height=" + intHeight + ",menubar=no,resizable=yes,scrollbars=yes,toolbar=no");
}
/*********************************************************************************************/