// ************************************************************************************ //
//
// File name: utils.js
// Version: .5
// Date: 12/04/2003
// Programmer: Matt McMahon 
//
// ************************************************************************************ //
// Required Files:
//  browsercheck.js
//
// ************************************************************************************ //
// Version History:
//
// ************************************************************************************ //


/*
Funciton:  openNewWindow
Purpose: Open pop-up windows.
Parameters:
url - String that specifies the URL of the document to open in pop-up window.
windowName - String that specifies the name of the pop-up window.
w - Sets the width of the window, in pixels.
h - Sets the height of the window, in pixels.
*/
function openNewWindow(url,windowName,w,h)
{
	var img_win = window.open(url, windowName, "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width="+w+",height="+h);
	img_win.focus();
	return false;
}
