function getCountrycodeForCountry(country)
{
	if(country == 'Deutschland')
	{
		return '0049';
	}	
	
	else if(country.substring(1, 10)  == 'sterreich')
	{
		return '0043';
	}		
	
	else if(country.substring(4, 14) == 'britannien')
	{
		return '0044';
	}	
	
	else if(country == 'Italien')
	{
		return '0039';
	}

	else if(country == 'Liechtenstein')
	{
		return '00423';
	}	
	
	else if(country == 'Schweiz')
	{
		return '0041';
	}					
	
	else if(country == 'Spanien')
	{
		return '0034';
	}	
	
	else if(country == 'Frankreich')
	{
		return '0033';
	}		
	
	else
	{
		return '??';		
	}
}