function navigationtype_change()
{
	navtype = document.getElementById('navigationtype');

	switch (navtype.options[navtype.selectedIndex].value) {
		case 'close':
			document.getElementById('dateyear').style.display = 'block';
			document.getElementById('department').style.display = 'none';
			document.getElementById('datemonth').style.display = 'block';
			dateyear_change();
			break;
		case 'department':
			document.getElementById('dateyear').style.display = 'none';
			document.getElementById('department').style.display = 'block';
			document.getElementById('datemonth').style.display = 'none';
			newdepartment_change();
			break;
	}
}


function dateyear_change()
{
	theform = document.getElementById('listvacancies');
	thedateyear = document.getElementById('dateyear');

	theform.action = 'index.php?module=pagesetter&tid=16&filter=close^like^' + thedateyear.options[thedateyear.selectedIndex].value;
	theform.submit();
}


function department_change()
{
	theform = document.getElementById('listvacancies');
	thedepartment = document.getElementById('department');
	
	theform.action = 'index.php?module=pagesetter&tid=16&filter=department^sub^' + thedepartment.options[thedepartment.selectedIndex].value;
	theform.submit();
}


function newdepartment_change()
{
	theform = document.getElementById('listvacancies');
	thedepartment = document.getElementById('department');
	
	theform.action = 'index.php?module=pagesetter&tid=16&filter=newdepartment^sub^' + thedepartment.options[thedepartment.selectedIndex].value;
	theform.submit();
}

