﻿function infobox_headline_chs(text)
{


	var erg_Infomaterial = headline.search(/^Info.+|Literature Request|Request Literature/i);
	var erg_SoftwareDownloads = headline.search(/Software Down.+/i);
	var erg_TechnischeDokumentation = headline.search(/^Technische Dokumentation|^Technical Documentation/i);
	var erg_Aussendienstmitarbeiter = headline.search(/Aussendienstmitarbeiter|Außendienstmitarbeiter|Sales &amp; Distribution/i);
	var erg_Anschluss_Systeme = headline.search(/Anschluss-Systeme|Connection.+|Connection-.+/i);
	var erg_OnlineKatalog = headline.search(/^Online|On-Line Product Catalog|Online-Katalog/i);
	
	var text = new Array();

//CHS, China
	text[24]="在线产品目录";
	text[25]="订阅样本";
	text[26]=" 技术文件";
	text[27]="软件下载";
	text[28]="销售部门联系表";
	text[29]="连接技术";

//JAP, Japanese
	text[120]="オンラインカタログ";
	text[121]="カタログ請求";
	text[122]="test doku";
	text[123]="test download software";
	text[124]="販売拠点";
	text[125]="接続システム";

	text[1000]="";


//DEU	
	if (land_sprache=="DEU")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//DES	
	if (land_sprache=="DES")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//GLE
	if (land_sprache=="GLE")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//FRB
	if (land_sprache=="FRB")
	{
	delete headline;
	return(text[1000]); 	
	}	

//ENG
	if (land_sprache=="ENG")
	{
	delete headline;
	return(text[1000]); 	 
	}
	
//DEN
	if (land_sprache=="DEN")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//RUS
	if (land_sprache=="RUS")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//PLK
	if (land_sprache=="PLK")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//DEB
	if (land_sprache=="DEB")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//ENU
	if (land_sprache=="ENU")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//FRS
	if (land_sprache=="FRS")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//NLD
	if (land_sprache=="NLD")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//BNL
	if (land_sprache=="BNL")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//CSY
	if (land_sprache=="CSY")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//FRA
	if (land_sprache=="FRA")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//DEA	
	if (land_sprache=="DEA")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//SNG
	if (land_sprache=="SNG")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//ITS
	if (land_sprache=="ITS")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//ITA
	if (land_sprache=="ITA")
	{
	delete headline;
	return(text[1000]); 	
	}

//CDG
	if (land_sprache=="CDG")
	{
	delete headline;
	return(text[1000]); 	
	}
	
//PTB
	if (land_sprache=="PTB")
	{
	delete headline;
	return(text[1000]); 	
	}
//NOR
	if (land_sprache=="NOR")
	{
	delete headline;
	return(text[1000]); 	
	}


//JAP
	if (land_sprache=="JAP" && erg_OnlineKatalog==0)
	{
	delete headline;
	return(text[120]); 
	}
	if (land_sprache=="JAP" && erg_Infomaterial==0)
	{
	delete headline;
	return(text[121]); 
	}
	if (land_sprache=="JAP" && erg_TechnischeDokumentation==0)
	{
	delete headline;
	return(text[122]); 
	}
	if (land_sprache=="JAP" && erg_SoftwareDownloads==0)
	{
	delete headline;
	return(text[123]); 
	}
	if (land_sprache=="JAP" && erg_Aussendienstmitarbeiter==0)
	{
	delete headline;
	return(text[124]); 
	}
	if (land_sprache=="JAP" && erg_Anschluss_Systeme==0)
	{
	delete headline;
	return(text[125]); 
	}

	
//CHS
	if (land_sprache=="CHS" && erg_OnlineKatalog==0)
	{
	delete headline;
	return(text[24]); 
	}
	if (land_sprache=="CHS" && erg_Infomaterial==0)
	{
	delete headline;
	return(text[25]); 
	}
	if (land_sprache=="CHS" && erg_TechnischeDokumentation==0)
	{
	delete headline;
	return(text[26]); 
	}
	if (land_sprache=="CHS" && erg_SoftwareDownloads==0)
	{
	delete headline;
	return(text[27]); 
	}
	if (land_sprache=="CHS" && erg_Aussendienstmitarbeiter==0)
	{
	delete headline;
	return(text[28]); 
	}
	if (land_sprache=="CHS" && erg_Anschluss_Systeme==0)
	{
	delete headline;
	return(text[29]); 
	}




	else
	{
	return (headline);
	}

}








