// copyright 2000 Aperto Multimedia GmbH
// Version 0.0





function Nwin(theURL,winName,toolba,menubar,directories,status,location,resizable,scrollbars) {
window.open(theURL,'_blank','toolbar=1,menubar=1,directories=1,status=1,location=1,resizable=1,scrollbars=1,');
}

function LoadMenus() {
  if (window.pd0) return;
window.pd0 = new Menu("root",240,16,"MS UI Gothic",12,"#006400","#FFFFFF","#fff8dc","#9acd32");
pd0.add("ドイツの環境保護の歴史と3つのファクター","location='politik/index.html'");
pd0.add("ドイツの持続可能性戦略","location='politik/nachhaltigkeit.html'");
pd0.hideOnMouseOut=true;

window.pd1 = new Menu("root",150,16,"MS UI Gothic",12,"#006400","#FFFFFF","#fff8dc","#9acd32");
pd1.add("ドイツが脱原発を選ぶ理由","location='energien/index.html'");
pd1.add("再生エネルギー倍増へ","location='energien/erneubare_energien.html'");
pd1.add("ソーラー発電","location='energien/solar.html'");
pd1.add("風力発電","location='energien/windkraft.html'");
pd1.add("バイオマス","location='energien/biomasse.html'");
pd1.add("地熱発電","location='energien/geothermie.html'");
pd1.hideOnMouseOut=true;

window.pd2 = new Menu("root",180,16,"MS UI Gothic",12,"#006400","#FFFFFF","#fff8dc","#9acd32");
pd2.add("京都議定書の実施に向けて","location='klimaschutz/index.html'");
pd2.add("環境税制改革","location='klimaschutz/oekosteuer.html'");
pd2.add("環境にやさしい交通システム","location='klimaschutz/verkehr.html'");
pd2.add("屋上緑化","location='klimaschutz/dachbegruenung.html'");
pd2.add("自然の恵みを生かす住宅","location='klimaschutz/wohnung.html'");
pd2.hideOnMouseOut=true;

window.pd3 = new Menu("root",220,16,"MS UI Gothic",12,"#006400","#FFFFFF","#fff8dc","#9acd32");
pd3.add("循環型社会の構築と拡大生産者責任","location='kreislaufwirtschaft/index.html'");
pd3.add("デュアルシステム・ドイチュラント","location='kreislaufwirtschaft/dsd.html'");
pd3.add("飲料容器のデポジット制","location='kreislaufwirtschaft/dosenpfand.html'");
pd3.add("使用済み電子・電気機器","location='kreislaufwirtschaft/elektroschrott.html'");
pd3.hideOnMouseOut=true;

window.pd4 = new Menu("root",190,16,"MS UI Gothic",12,"#006400","#FFFFFF","#fff8dc","#9acd32");
pd4.add("ドイツ人と日本人の環境意識","location='alltagsleben/index.html'");
pd4.add("オーガニック農業","location='alltagsleben/oekolandwirtschaft.html'");
pd4.add("ブルーエンジェル","location='alltagsleben/blauer_engel.html'");
pd4.add("環境を意識した「新」首都ベルリン","location='alltagsleben/berlin.html'");
pd4.add("環境首都フライブルク","location='alltagsleben/freiburg.html'");
pd4.add("ドイツの環境教育","location='alltagsleben/umwelterziehung.html'");
pd4.hideOnMouseOut=true;

window.pd5 = new Menu("root",100,16,"MS UI Gothic",12,"#006400","#FFFFFF","#fff8dc","#9acd32");
pd5.add("お役立ちリンク","location='sonstiges/index.html'");
pd5.add("サイトマップ","location='sonstiges/sitemap.html'");
pd5.hideOnMouseOut=true;
pd5.writeMenus();

} // LoadMenus()


function mdown(e)
{
	if (navigator.appName == "Microsoft Internet Explorer")
	{
		if (event.button == 2)
		{
			alert("右クリックは使用できません。");
			return(false);
		}
	}
	else if (navigator.appName == "Netscape")
	{
		if (e.which == 3)
		{
			alert("右クリックは使用できません。");
			return(false);
		}
	}
}

if (document.all)
{
	document.onmousedown = mdown;
}

if (document.layers)
{
	window.onmousedown = mdown;
	window.captureEvents(Event.MOUSEDOWN);
}

