// JavaScript Document

function doTell()
{
	var tell = document.getElementById("tell");
	if(tell.style.display == "block")
	{
		tell.style.display = "";
	}
	else
	{
		tell.style.display = "block";
	}
}

function resetTo(_this)
{
	if(_this.value=="Van" | _this.value=="Naar")
	{
		_this.value = "";	
	}
}

function validateTo(_this)
{
	if(_this.name=="from" && _this.value=="")
	{
		_this.value = "Van";	
	}
	if(_this.name=="to" && _this.value=="")
	{
		_this.value = "Naar";	
	}
}

function sendTell(_template)
{
	document.tellFrm.action = "tell.php";
	document.tellFrm.submit();
}

function sendContact(_template)
{
	document.contactFrm.action = "verzFrm.php";
	document.contactFrm.submit();
}
