// Script: Open a new window
// Version: 1.0
// Last Updated: 7 July 2003
// Author: Paul Hunt
// Org: CustomSUPPORT
// Email: webmaster@CustomSUPPORT.com
function _windowNew(url,name,horSize,vertSize,statusBar,menuBar,toolBar,reSize,scrollBars) {
	if (!statusBar) {statusBar="no";}
	if (!menuBar) {menuBar="no";}
	if (!reSize) {reSize="no";}
	if (!scrollBars) {scrollBars="no";}
	if (!toolBar) {toolBar="no";}
	parms = 'width=' + horSize + ',height=' + vertSize + ',status=' + statusBar + ',menubar=' + menuBar + ',resizable=' + reSize + ',scrollbars=' + scrollBars + ',toolbar=' + toolBar;
	window.open(url,name,parms);
	}
