function show_german()
{
var weite = 815
 var hoehe = 740
 fenster=window.open('front_content.php?idart=90&idcat=75&lang=3','fenster','scrollbars=yes,status=yes,menubar=yes,locationbar=yes, toolbar=yes, resizable=yes,width=' + 
weite + ',height=' + hoehe);
fenster.moveTo(((screen.availWidth-weite)/2),((screen.availHeight-hoehe-80)/2));
opener.close();
fenster.focus();
}

window.onresize = function() {

document.location.href = document.location.href;
}




/* 
	Javascript to style odd/even table rows
	Derived from 'Zebra Tables' by David F. Miller (http://www.alistapart.com/articles/zebratables/)
	
	Modified by Jop de Klein, february 2005
	jop at validweb.nl
	http://validweb.nl/artikelen/javascript/better-zebra-tables/
	
	modified/simplified by Sabine Ayshe Peters, www.rot65.de (the mouseover effect is removed)
*/

	var stripe = function() {
		var tables = document.getElementsByTagName("table");	

		for(var x=0;x!=tables.length;x++){
			var table = tables[x];
			if (! table) { return; }
			
			var tbodies = table.getElementsByTagName("tbody");
			
			for (var h = 0; h < tbodies.length; h++) {
				var even = true;
				var trs = tbodies[h].getElementsByTagName("tr");
				
				for (var i = 0; i < trs.length; i++) {
					
					if(even)
						trs[i].className += " even";
					
					even = !even;
				}
			}
		}
	}

	window.onload = stripe;
