<!--

/*
	File:  global.js
	© 2001 Locke Enterprises - All rights reserved.
	Purpose:  Nathan's stock javascript routines.
	Created:  5/8/2001 - Nathan
	Modification History:
		· 5/29/2001 - Nathan - added getSelectedButtonValue() and checkLength()
	Exports: getSelectedButtonIndex(), getSelectedButtonValue(), checkLength()
*/


//-------------------------------------------------------------------------
// openNewPlainWindow:  Returns the index of the selected option button.
// NOTE:  Just makes printing difficult, but not impossible.
//-------------------------------------------------------------------------
function openNewPlainWindow( url ) {

	window.open( url, "", "titlebar=yes,resizable=yes,status=no,toolbar=no,location=no,menu=no,scrollbars=yes,height=400,width=600");

} // openNewPlainWindow()


//-->
