// JavaScript Document

function changeAction(form, sFunction) 
{
	var sForm = document.getElementById(form);
	
	if(sFunction == 'kamperen')
	{
	    sForm.action = "http://www.wolfskuil.nl/beschikbaarheid/kamperen.php";
	}
	else
	{
	    sForm.action = "http://www.wolfskuil.nl/beschikbaarheid/bezetting.php";
	}
}


function showHideElement(sElement, sFunction) 
{
	oElement = document.getElementById(sElement);

	if(sFunction == 'show')
	{
		oElement.style.display = 'block';
	}
	else
	{
		oElement.style.display = 'none';
	}
}

function submitFormToPopUP(form) 
{
	var sform = form;
	var w = window.open('about:blank','myWin','toolbars=0, width=910, height=700');
	
	sform.target = 'myWin';
	
	return true;
}
