/////////////////////////////////////////////////////////////////
function IsNetscape() {
	var bName =navigator.appName;
	return (bName =="Netscape");
}
/////////////////////////
	function IsIE() {
	 var bName =navigator.appName;
	 return (bName =="Microsoft Internet Explorer");
	} 
/////////////////////////////////////////////////////////////////
function openWindow(url,name,x,y,w,h,scrolling,resize) {
	if (IsNetscape()) w =w-2;
	var re =(resize) ? "yes" : "no";
	options ='left='+x+',top='+y+',width='+w+',height='+h+',toolbar=no,location=no,status=no,menubar=yes,scrollbars='+scrolling+',resizable='+re+',dependent=no,hotkeys=no,directories=no';
	win =window.open(url,name,options);
	win.focus();  
} 
/////////////////////////////////////////////////////////////////
function openSitemap(sprache) {
	if(sprache !=null) {
		openWindow('/eacs2009/funktionen_'+sprache+'/sitemap/start.php','sitemap',190,100,320,500,'yes',true);
	} else {
  	openWindow('/eacs2009/funktionen/sitemap/start.php','sitemap',190,100,320,500,'yes',true);
	}
}
/////////////////////////////////////////////////////////////////
function openProgramPopup() {
  if (!window.programPopup) {
      programPopup =window.open('/eacs2009/funktionen/programm/programm.php','programWindow','width=577,height=435,top=100,left=190,scrollbars=yes,status=yes,resizable=yes,toolbar=yes');
  }
  else {
      if (!programPopup.closed) {
          programPopup.focus();
          programPopup.location.reload();
      }
      else {
          programPopup =window.open('/eacs2009/funktionen/programm/programm.php','programWindow','width=577,height=435,top=100,left=190,scrollbars=yes,status=yes,resizable=yes,toolbar=yes');
      }
  }
}
function closeProgramPopup() {
  if (window.programPopup && !programPopup.closed)
    programPopup.close();
}	  
/////////////////////////////////////////////////////////////////
