<!--
/*	Copyright 2005 [di] digitale informationssysteme gmbh, Mannheim, www.digi-info.de
*	global.js - global js file
*
*	AUTHOR:
*	goma - Gordon Marshall - marshall(at)digi-info(dot)de
*
*
*	TODO:
*
*
*	CHANGELOG:
*	who:			when:			what:
*	goma			18.07.2005		created for Freudenberg MicronAir
*	sven			13.03.2005		changed for Woellner-Group
*
*/

// Browsererkennung
moz = (document.getElementById && !document.all) ? true : false;
ie = (document.all && !moz) ? true : false;

// OS
windows = (navigator.platform.toLowerCase().indexOf("win") != -1) ? true : false;

// Seite zu Favoriten/Sidebar hinzufuegen
function addFavorites(strUrl,strTitle) {
	strTitle = "MKS - " + strTitle;
	if (ie) {
		window.external.AddFavorite(strUrl,strTitle);
		}
	else if (moz) {
		window.sidebar.addPanel(strTitle,strUrl,'');
		}
	}

function imagePop(imageURL, w, h) { 
    optionen = "toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0"; 
    popup = window.open("", "", optionen + ',width=' + w + ',height=' + h); 
    popup.focus(); 
    popup.document.open(); 
 
with(popup) 
    { 
        document.write("<html><head>"); 
        document.write("<title>Detailansicht</title>"); 
        document.write("</head>"); 
        document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">"); 
        document.write("<img border=\"0\" onclick=\"window.close();\" src=\"http://www.woellner-group.de"+ imageURL +"\" title=\"Zum Schließen auf das Bild klicken\" />"); 
        document.write("</body></html>"); 
    } 
   return; 
} 

function antiSpam(mname,mserver,mdomain,mtext)
{
  if(mtext=="")
    document.write('<a href="mailto:'+mname+'@'+mserver+'.'+mdomain+'">'+mname+'@'+mserver+'.'+mdomain+'</a>');
  else
    document.write('<a href="mailto:'+mname+'@'+mserver+'.'+mdomain+'">'+mtext+'</a>');
}

//-->
