<?

/*/
	© 2002-2004 by Locke Enterprises (iLocke.com) - All rights reserved.
	License: Authorized for use on the AutoGlassHosting.com website.
	File: Globals.phi  [v2.0]
	Purpose:  Export global variables to containing scripts.
	Created:  5/22/2001 - Locke Enterprises (iLocke.com)
	Modification History:
		· 6/18/2004 - Nathan adapted for the AGH website
		· mm/dd/yyyy - name - comment
/*/


	/// ensure / mimic the register_globals / GPCS order behaviour...
	if( !ini_get('register_globals') ) {
		if( $_GET ) extract($_GET);
		if( $_POST ) extract($_POST);
	} 

	/// set some global-use variables...
	$g_BaseURL = "http://66.223.106.122/";
	$g_BasePath = "/home/auto11/public_html/";


?>