		/*-------------------------------------------------------------------*/
		/* JAVASCRIPT														 */ 
		/*-------------------------------------------------------------------*/	
		
		function submit_register ()
		{			
			// there is no goto_app ...			
			document.formFields.submit();
		}
			
		function aboutSite()
		{
			var str = "/common_html/aboutSite.php";				
			wnd = window.open(str,"aboutSite",
					"height=630, width=820, status, top, left, resizable, scrollbars, dependent");
			wnd.focus();
		}	
		function countryPick() 
		{	
			var doc_str = document.payment_method.doc_str.value;
			var xCountry_doc_str = document.payment_method.xCountry_doc_str.value;

			var default_country_id = document.formFields.default_country_id.value;
			
			var doc_strArray = doc_str.split('|');			
			var xCountry_doc_strArray = xCountry_doc_str.split('|');			
		
			var chosenCountry = document.formFields.country_id.value;

			if (default_country_id == chosenCountry)
			{
				document.formFields.state.disabled  = false; 
				document.formFields.state[0].selected = true;
			}
			else
			{
				document.formFields.state.disabled  = true; 
				document.formFields.state[0].selected = true;
				
			}		
		}
		function set_formFields() 
		{	
			var doc_str = document.payment_method.doc_str.value;
			var xCountry_doc_str = document.payment_method.xCountry_doc_str.value;

			var default_country_id = document.formFields.default_country_id.value;
			var docType = document.payment_method.selected_docType.value;
	
			var doc_strArray = doc_str.split('|');			
			var xCountry_doc_strArray = xCountry_doc_str.split('|');			
		
			var chosenCountry = document.formFields.country_id.value;
			
			if (default_country_id == chosenCountry)
			{
				document.formFields.state.disabled  = false; 
				
			}
			else
			{
				document.formFields.state.disabled  = true; 
				document.formFields.state[0].selected = true;
			}
		}
		
	
