function count_ivw(infoObject) {
	if (typeof infoObject != "object") {
		return;
	} else {
		var dataValidator = {
			brand: "sat1",
			tld: "de",
			agof: "0000keincode",
			path: "/"};
		for (var item in dataValidator) {
			if (typeof infoObject[item] != "string") {
				infoObject[item] = dataValidator[item];
			}
		}
		
		var SKTG="1521seriewke;";
		var IVWPFAD="/filme_serien/eine-wie-keine/sendung/vorschau";
		var imgflybox = new Image();
		var flybox;
		switch (infoObject.tld) {
			case "ch": flybox = "http://"+infoObject.brand+".wemfbox.ch/cgi-bin/ivw/CP/"+infoObject.agof+";"+infoObject.path; break;
			case "at": flybox = "http://svpro7.oewabox.at/cgi-bin/ivw/CP/"+infoObject.agof+"/"+infoObject.brand+".at/;"+infoObject.path; break;
			default: flybox = "http://"+infoObject.brand+".ivwbox.de/cgi-bin/ivw/CP/"+infoObject.agof+";"+infoObject.path;
		}
		flybox += ((flybox.substr(-1) != "/") ? "/" : "") + "?" + Math.random().toString().replace(/\./, "");
		imgflybox.src = flybox;
	}
}
