function open_weitersagen(){
	open_wnd('microsite.html','wnd',950,600);
}
//------------------------------------------------------------------------------------//

function OS_Check(){
  var userPlat = "unknown";
  var navInfo = navigator.appVersion;
  if (navInfo.indexOf("Win") != -1)
    userPlat = "Win";
  else if(navInfo.indexOf("Macintosh") != -1)
    userPlat = "PPC";
  else if(navInfo.indexOf("Mac_PowerPC") != -1)
    userPlat = "PPC";
  else if(navInfo.indexOf("68K") != -1)
    userPlat = "68K";
  return userPlat;
}

//------------------------------------------------------------------------------------//

var wnd = null;
var gUserOS = OS_Check();

function open_wnd(url,winName,breite,hoehe,props){
//<script language="Javascript" src="functions.js"></script>
//javascript:open_wnd('url.html','fenster',100,100,'resizable=yes')

if (!winName){winName = "openwnd";}

if (props==''){winProperties="status=no,menubar=no,resizable=no,directories=no,locationbar=no";}
else winProperties=props;


if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 &&  gUserOS == "PPC"){
	breite=breite-20;
	hoehe=hoehe-20;
}

winProperties+=",width=" + breite + ",height=" + hoehe;


if(wnd){
	if(wnd.closed)
		wnd  = null
	else
		wnd.close();
}
wnd=window.open(url, winName, winProperties);
wnd.focus();
}

