// JavaScript Document
var d = document;

pulldownFunctie = function()
{
	//window.onload = function (e) {
	var oFirst = d.getElementById("function"); 
	if (oFirst != null){
	oFirst.onchange = function (e) 
	{
		//alert(this.selectedIndex)	
		window.location="?mid=vacatureszoeken&functie="+oFirst.options[this.selectedIndex].value;
	}
	}
	
}

pulldownRegio = function()
{
	//window.onload = function (e) {
	var oFirst = d.getElementById("region"); 
	if (oFirst != null){
	oFirst.onchange = function (e) 
	{
		//alert(this.selectedIndex)	
		window.location="?mid=vacatureszoeken&regio="+oFirst.options[this.selectedIndex].value;
	}
	}
	
}
startList = function() {
	pulldownFunctie();
	pulldownRegio();
}
window.onload=startList;
