function deleteUmlaute(curText) {
 if (curText == "") return "";
 var result = curText;
 result=result.replace(/ü/g, "ue");
 result=result.replace(/ö/g, "oe");
 result=result.replace(/ä/g, "ae");
 result=result.replace(/Ü/g, "Ue");
 result=result.replace(/Ö/g, "Oe");
 result=result.replace(/Ä/g, "Ae");
 result=result.replace(/ß/g, "ss");

 return result;
}

function videoivw(playerName, videoName, lineupName) {
    p1 = deleteUmlaute(playerName);
    p2 = deleteUmlaute(videoName);
    if (lineupName) {
        p3 = deleteUmlaute(lineupName);
    }
	ivw_string = 'http://artmaga.ivwbox.de/cgi-bin/ivw/CP/1023280;800,,Brightcove_'+ p1 +':'+ p2 +':'+ p3 +',?p='+ (Math.random()*100000);
	hbx_para_1 = "Brightcove_"+p1+":"+p2+"";
	hbx_para_2 = "/videoplay/"+p3;


	if ( document.images["ivw"] ) {
		document.images["ivw"].src = ivw_string;
	}
	if (typeof(parent._gat)== 'object') {
		  parent.pageTracker._trackPageview(hbx_para_2);
	}

// Site Catalyst     
	vlocation = "artikel";
	if ( s.channel == "video" ) {vlocation = "videocenter"} ; //Video via videocenter
	stemp = s.hier1;
	temp7 = s.prop7 ;
	temp2 = s.prop2 ;
	s.prop2 = "1023280";
	s.prop7 = "video";
	s.hier1= "video" + "," + vlocation + ','+p2+','+p1+','+p3;
	void(s.t());
	s.prop7 = temp7 ;
	s.hier1 = stemp;
	s.prop2 = temp2;


	//console.log(hbx_para_1+","+ hbx_para_2);


}
