/* Browser Versionscheck */
	var browser=navigator.appName;
	var version=navigator.appVersion;
	if ((browser.indexOf("Microsoft") >= 0) && (parseInt(version) >= 4)) {
	} else { alert('Diese Seiten sind optimiert für Microsoft Internet Explorer 5.0 oder höher!'); };


/* Popup window */
function popup(datei, groesse_x, groesse_y) {
	if ( window.Fenster ) { Fenster.close(); }
	Fenster = window.open('', null, 'top=200,left=300,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no, width=' + groesse_x + ', height=' + groesse_y);
	Fenster.document.write('<html><head><title>vergrößertes Bild</title></head><body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"><table width="100%" height="100%" cellpadding="0" cellspacing="0"><tr><td align="center" valign="middle"><a href="javascript:window.close();" title="Close window"><img src="'+datei+'" border="0" width='+groesse_x+' height='+groesse_y+'> </a></td></tr></table></body></html>')
	Fenster.focus();
}

/* Popup window and Resize to Imagesize */
function popup_res(datei, groesse_x, groesse_y) {
	if ( window.Fenster ) { Fenster.close(); }
	Fenster = window.open('', null, 'top=200,left=300,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no, width=' + groesse_x + ', height=' + groesse_y);
	Fenster.document.write('<html><head><title>vergrößertes Bild</title></head><body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"><table width="100%" height="100%" cellpadding="0" cellspacing="0"><tr><td align="center" valign="middle"><a href="javascript:window.close();" title="Close window"><img src="'+datei+'" border="0" onload="window.resizeTo(this.width, this.height);"></a></td></tr></table></body></html>')
	Fenster.focus();
}
