<!-- // Hide script
function openNewWindow(oWindow, sWindName, pageURL, wWidth, wHeight, wTop, wLeft)
{
	// Opens a new browser window of the specified width and height and loads
	//	the specified page into it. Window has NO MENUS or STATUS.
	// Required vars...
	//	oWindow - A Variable to become the window object (Should be = null)
	//	sWindName - The name of the window in STRING format
	//	pageURL - The URL of the page of open into the window
	//	wWidth - The new window width
	//	wHeight - The new window height
	//	wTop - Window TOP location
	//	wLeft - Window LEFT location
	
	// Define variable
	var winopts = "";		// Window options
	
	// Set window options
	winopts = "width=" + wWidth + ",height=" + wHeight + "," + 
		"resizeable=0,border=0,status=0,menubar=0,scrollbars=0";
		
	if ((wTop + "") != "") {
		winopts = winopts + ",top=" + wTop;
	}
	
	if ((wLeft + "") != "") {
		winopts = winopts + ",left=" + wLeft;
	}
	
	// Create a new window
	oWindow = window.open('', sWindName, winopts);

	// Check if new window was created
	if (oWindow != null) {
		// Check if the new window's opener is set
		if (oWindow.opener == null) {
			// Opener not set, set it to current window
			oWindow.opener = self;
		}
		
		// Load the required page into the new window
		oWindow.location.href = pageURL;
		
		// Bring the new window to the front
		oWindow.focus();
	}
}
// End hiding -->
