
//	SWAPMENU-SCRIPT for PHILMELKA.DE MENU
//	(C) 07/2004 Uwe Wilke
//	mail: uwe[dot]wilke[at]riffuchs[dot]de
//	web: http://riffuchs.de

<!--

var ns4=(navigator.appName=='Netscape' && parseInt(navigator.appVersion)==4);
var ns6=(document.getElementById)? true:false;
var ie4=(document.all)? true:false;

if(ie4)var docRoot='document.body';
	var ie5=false;
	if(ns4) {
		var oW=window.innerWidth;
		var oH=window.innerHeight;
		window.onresize=function(){if(oW!=window.innerWidth||oH!=window.innerHeight)location.reload();}
	}
	if(ie4) {
		if((navigator.userAgent.indexOf('MSIE 5')> 0)||(navigator.userAgent.indexOf('MSIE 6')> 0)) {
		if(document.compatMode && document.compatMode=='CSS1Compat')docRoot='document.documentElement';
		ie5=true;
	}
	if(ns6) {
		ns6=false;
	}
}

function Div_ToggleVisible(div) {
	if (ns6) {
		//alert(document.getElementById(div).style.display);
		if (document.getElementById(div).style.display == "none")
			document.getElementById(div).style.display = "";
		else
			document.getElementById(div).style.display = "none";
		//alert(document.getElementById(div).style.display);	
	}
	if (ie4 || ie5)	{
		//alert("InternetExplorer");
		if (document.all.item(div).style.display == "none")
			document.all.item(div).style.display = "";
		else
			document.all.item(div).style.display = "none";
		}
		
	return false;
}

// -->
