/*
 * 
 * JavaScript Library
 * Copyright Tom Aizenberg 2008
 * 
 */



// algemene functies

function focusInput(id){
	
	document.getElementById(id).style.backgroundColor = "#fffad7";
	document.getElementById(id).style.borderColor = "#000";
	
}

function blurInput(id){
	
	document.getElementById(id).style.backgroundColor = "#fff";
	document.getElementById(id).style.borderColor = "#ccc";
	
}

function ask(q,h){
	
	var a = confirm(q);
	if(a){
		window.location='?p='+h;
	}
	
}

function showBeschrijving(max){
	
	for(i=0; i < max; i++){
		document.getElementById('pub_'+i).style.display = 'none';
	}
	
	i = document.getElementById('pub').selectedIndex;
	
	document.getElementById('pub_'+i).style.display = 'block';
	
}

