/**
 * @author Claus
 */
function open_menu(id)
{
			document.getElementById(id).style.display = 'block';
}

function close_menu(id)
{
			document.getElementById(id).style.display = 'none';
}
function decide(menu){
	document.getElementById("subi").value=menu;
	document.getElementById("subiForm").submit();
}
function resizeWindow()
{
	var masterHeight = window.innerHeight;
	var masterHeight = document.body.clientHeight;
	masterHeight=masterHeight-240;
	if(masterHeight<20){masterHeight=20;}
	if(document.getElementById("main")!=undefined){document.getElementById("main").style.height=masterHeight+"px";}
}
	


