<!--

if (window != top) top.location.href = location.href;

function clearField(field) {
  // Check if field contains the default value
  if (field.value == field.defaultValue) {
    // It does, so clear the field
    field.value = "";
  }
}

function showPulldown(nummer) {
	if (nummer != 285) {
		clearTimeout(timeOn); 	
		hideAllLayers(); 
		showLayer('drop'+nummer); 
		clearTimeout(timeOn); 
		//return true;
	}
}


function toggleDiv(divje) {
	var speed = 1000;
	var spacer = 250;
	var node = dojo.byId(divje);
	
	if (node._anim) {
		node._anim.stop();
	}
	
	if (dojo.style(node,"display") == "none") {
		node._anim = dojo.fx.wipeIn({
			node: node,
			duration: speed,
			easing: dojo.getObject("dojo.fx.easing.expoOut")
		})
		node._anim.play();
	}
	else {
		node._anim = dojo.fx.wipeOut({
			node: node,
			duration: speed,
			easing: dojo.getObject("dojo.fx.easing.expoOut")
		});
		node._anim.play();
	}
}

// -->


