// JavaScript Document// Firefoxfunction firefoxy(){if (/Firefox[\/\s](\d+\.\d+)/.test(navigator.userAgent)){  	var ffversion=new Number(RegExp.$1) 	if (ffversion>=3)		alert("sorry, in Firefox 3, \nbitte die Symbol- und Statusleisten manuell deaktivieren. \nplease uncheck the location, tool, and status bars manually.");	else if (ffversion>=2)	;	else if(ffversion>=1)	;}else {	explorery();	}}// IEfunction explorery(){if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)){ 	var ieversion=new Number(RegExp.$1) 	if (ieversion>=8)	alert("sorry, \nInternet Explorer is unable to display Lee Marvin Toolbox since version 6\nInternet Explorer ist seit Version 6 nicht mehr in der Lage, Lee Marvin Toolbox korrekt darzustellen");	else if (ieversion>=7)	alert("sorry, \nInternet Explorer is unable to display Lee Marvin Toolbox since version 6\nInternet Explorer ist seit Version 6 nicht mehr in der Lage, Lee Marvin Toolbox korrekt darzustellen");	else if (ieversion>=6)	;	else if(ieversion>=5)	;}else {	operay();}}// Operafunction operay(){nua=navigator.userAgent;op=(navigator.userAgent.indexOf('Opera')!=-1);if (op){	str_pos=navigator.userAgent.indexOf('Opera');	nu=navigator.userAgent.substr((str_pos+6),4);	brow = 'Opera';	alert("sorry, \nOpera does not display Lee Marvin Toolbox properly\nOpera stellt Lee Marvin Toolbox nicht korrekt dar");}else {	safariy();}}// Safari für PCfunction safariy(){var ua = navigator.userAgent.toLowerCase();var sys = navigator.platform.toLowerCase();if ((ua.indexOf('safari/') != -1) && (sys.indexOf('mac') ==-1)){alert("sorry, \nSafari for PC does not display Lee Marvin Toolboxproperly; please use IE6 or Firefox \nSafari für PC stellt Lee Marvin Toolbox nicht korrekt dar.");}else {	icaby();}}// iCabfunction icaby(){if (navigator.vendor = "iCab" != -1){;}else {	othersy();}}function othersy(){	alert("sorry, \nLee Marvin Toolbox may not work properly on this browser\nLee Marvin Toolbox funktioniert vielleicht nicht ganz korrekt mit diesem Browser");}// All othersfunction browsers(){	firefoxy();explorery();operay();icaby();safariy();}/*if ((icaby()==-1)&&(safariy()==-1)&&(operay()==-1)&&(firefoxy()==-1)&&((explorery()==-1)){alert("sorry, \nLee Marvin Toolbox may not work properly on this browser\nLee Marvin Toolbox funktioniert vielleicht nicht ganz korrekt mit diesem Browser");}}*/browsers();
