/*************************************************************
	
	FILE:			Window.js
	
	DESCRIPTION:	This file contains scripts for working
					with the window object
	
	This file can be placed within a page by pasting the 
	following into the page
	
<script type="text/javascript" src="/Scripts/Window.js"></script>
	
	
**************************************************************/


/**
 * openResizableWindow
 *
 *	This function opens a resizable popup window with any url and width and height.
 * 
 * VERSIONS:
 *	09.20.2002 by murray@gordon.org
 *		Wrote original function.
 *
 * VARIABLES:
 *	URL:	Absolute path to the URL to open
 *	width:	The width of the window to open
 *	height:	The height of the window to open
 *
 */
 function openResizableWindow(URL, width, height)
{
	window.open(URL, "", "resizable=1,scrollbars=1,width=" + width + ",height=" + height);
}


function gotoURL(URL)
{
	window.location = URL;
} 
	
	
function openResizableWindowMB(URL, width, height)
{
	window.open(URL, "", "resizable=1,scrollbars=1,menubar=1,toolbar=1,width=" + width + ",height=" + height);
}


function gotoURL(URL)
{
	window.location = URL;
} 
	









