﻿//-------------------------------------------
// OpenNewWindowScroll
//
//	 Create a new browser window.
//
// Parameters:
//	pi_Address: The url to goto.
//  pi_WindowName: The name of the window.
//  pi_Width: The window width.
//	pi_Height: The window height.
//	pi_Left: The left position.
//	pi_Top: The top position.
//
// Return:
//	 n/a
//-------------------------------------------
function OpenNewWindowScroll(pi_Address,
                             pi_WindowName,
					         pi_Width,
					         pi_Height,
					         pi_Left,
					         pi_Top)
{
	window.open(pi_Address, pi_WindowName, 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=' + pi_Width + ',height=' + pi_Height + ',left=' + pi_Left + ',top=' + pi_Top);
}


