/* einige Javascriptfunktionen für die Homepage*/

/* öffnet Bild im eigenen Fenster */
var bild;
function openpopup(bild){
	window.open(bild+"_big.jpg","");
}

/* öffnet beim klicken auf einen link eine neue Seite */
var seite;
function rahmen(seite){
	parent.rechts.window.location=seite+".html";
//	parent.titel.window.location=seite+"_titel.html";

//	if (seite=="other_series"){
//		parent.links.window.location="erweiterte_navigation.html";
//	}else {
//		parent.links.window.location="navigation.html";
//	};
	if( seite.length > 11 ){
		if ( seite.substring(0,12) == "other_series" ){
			parent.links.window.location="erweiterte_navigation.html";
		} else {
			parent.links.window.location="navigation.html";
		}
	} else {
		parent.links.window.location="navigation.html";
	}

}
var isOpen=0;
/* Erweiterer Rahmen , u.U. wird die Navigation gewechselt */
function erweiterterrahmen(seite){
	//parent.rechts.window.location=seite+".html";
//	parent.titel.window.location=seite+"_titel.html";
	if ( isOpen == 0 && seite != "other_series/desaster_areas_1" && seite != "other_series/desaster_areas_2"
	   && seite != "other_series/grafiken" && seite != "other_series/xxl" && seite != "other_series/phantasiewelten" ){
		parent.links.window.location="navigation.html";
	} else {
		parent.links.window.location="erweiterte_navigation.html";
	};
}

