function initLanguage(){
				var objects = new Array();;
				switch(Get_Cookie('Lang'))
				{
					case 'en_US':
						objects[0] = 'en_US';
						objects[1] = 'UA-266925-7'
						break;
					case 'de_DE':
						objects[0] = 'de_DE';
						objects[1] = 'UA-266925-6'
						break;
					case 'fr_FR':
						objects[0] = 'fr_FR';
						objects[1] = 'UA-266925-8'						
						break;
					case 'es_ES':
						objects[0] = 'es_ES';
						objects[1] = 'UA-266925-5'						
						break;

					case 'it_IT':
						objects[0] = 'it_IT';
						objects[1] = 'UA-266925-9'						
						break;
						
					case 'ru_RU':
						objects[0] = 'ru_RU';
						objects[1] = 'UA-266925-13'						
						break;

					case 'br_PT':
						objects[0] = 'br_PT';
						objects[1] = 'UA-266925-12'						
						break;
/*						
					case 'pt_BR':
						objects[0] = 'pt_BR';
						objects[1] = 'UA-266925-12'						
						break;
						
						
					case 'nl_NL':
						objects = 'nl_NL';
						objects = 'UA-266925-7'						
						break;
*/
						
					default:
						objects[0] = "en_US";//SetValue(Get_Cookie('Lang'),'en_US');
						objects[1] = 'UA-266925-7'
						
						break;
				}

				return objects;
								
				
				
			}
			
			function SetValue(val, def)
			
			
			{
				if(val != null && val.length == 5)
					return val;
				else
					return def;
			}
			
			// this fixes an issue with the old method, ambiguous values
			// with this test document.cookie.indexOf( name + "=" );
			function Get_Cookie( check_name ) {
				// first we'll split this cookie up into name/value pairs
				// note: document.cookie only returns name=value, not the other components
				var a_all_cookies = document.cookie.split( ';' );
				var a_temp_cookie = '';
				var cookie_name = '';
				var cookie_value = '';
				var b_cookie_found = false; // set boolean t/f default f
				for ( i = 0; i < a_all_cookies.length; i++ ){
					// now we'll split apart each name=value pair
					a_temp_cookie = a_all_cookies[i].split( '=' );
					// and trim left/right whitespace while we're at it
					cookie_name = a_temp_cookie[0].replace(/^\s+|\s+$/g, '');
					// if the extracted name matches passed check_name
					if ( cookie_name == check_name ){
						b_cookie_found = true;
						// we need to handle case where cookie has no value but exists (no = sign, that is):
						if ( a_temp_cookie.length > 1 ){
							cookie_value = unescape( a_temp_cookie[1].replace(/^\s+|\s+$/g, '') );
						}
						// note that in cases where cookie is initialized but no value, null is returned
						return cookie_value;
						break;
					}
					a_temp_cookie = null;
					cookie_name = '';
				}
				if ( !b_cookie_found ){
					return null;
				}
			}
			function setCookie(c_name,value,expiredays)
			{
				var exdate=new Date();
				exdate.setDate(exdate.getDate()+expiredays);
				document.cookie=c_name+ "=" +escape(value)+
				((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
				
//				window.location.reload(true);
				
				window.location = "index.htm"
				
			}
