/**
 *	Application Config
 *	--------------------------
 *
 *	This file contains message and url properties for all applications within 
 *	the website. The generic POST urls "autocomplete" and "validate" are 
 *	defaults unless overwritten by individual applications.
 *	Applications may do so by adding a hidden input to the app's <form> with
 *	the same name as the global variable's. The input's value then indicates 
 *	the alternate url to post to.
 *	
 */


var Globals = {
		
	// messages
	MSG_REQUIRED:				'Not all mandatory fields are filled out correctly.',
	MSG_ILLEGAL:				'Not all fields are filled out correctly.',
	MSG_DEPENDENT:				'the field is dependent on another field.',
	MSG_LOADING:				'Please wait, loadng information.',
	                    		
	MSG_REQUIRED_EN:			'Not all mandatory fields are filled out correctly.',
	MSG_ILLEGAL_EN:				'Not all fields are filled out correctly.',
	MSG_DEPENDENT_EN:			'the field is dependent on another field.',
	MSG_LOADING_EN:				'Please wait, loadng information.',
                        	
                        		                    		
	// locations        		
	URL_PRINT_PREVIEW:			'/printspipreview.html',
	URL_SHOP_POPUP:				'#',
	URL_PRINT_MAP:				'/printmap.html',
	URL_NETSTAT:				'#',

	// generic posts
	POST_AUTOCOMPLETE:			'/applications/post_autocomplete?autocomplete=true',
	POST_VALIDATE:				'/applications/post_validate?validate=true',


	// alt locations for searching, contains static html fragments
	GET_ALT_LOCATIONS:			'/applications/get_alt_locations?alt=true',



}