<!--

var Last=""
function swap(current){
if(current==Last){return} 
document.getElementById(current).style.display="block" 
if(Last==""){
Last=current 
return
}
else{
document.getElementById(Last).style.display="none"
}
Last=current 
}

function clearme(){
document.getElementById(Last).style.display="none"
}


function toggle(obj_id){
	if (document.getElementById){
		var obj = document.getElementById(obj_id);
			if (obj.style.display == '' || obj.style.display == 'none'){
				var state = 'block';
			} else {
				var state = 'none';
			}
			obj.style.display = state;
		}
	}

function gozen()	{
	window.location="./zen.html"
	}
function gohome()	{
	window.location="./index.html"
	}


window.onload=function(){
var x,y;
x=820;
if (self.innerHeight) // all except Explorer
{
	//alert("self");
	self.innerWidth = x;
	//y = self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientHeight)
	// Explorer 6 Strict Mode
{
	//alert("document.documentElement.clientWidth");
	window.resizeTo(x+10,x);
	//y = document.documentElement.clientHeight;
}
else if (document.body) // other Explorers
{
	//alert("document.body.clientWidth");
	document.body.clientWidth = x;
	//y = document.body.clientHeight;
}
//alert("x: "+x+", y: "+y);

	
//swap('holz');
}


//-->
