function browser( layer ) {
	if( document.getElementById ) {
		return document.getElementById( layer );
	}
	else{
		return ( document.all ) ? document.all[layer] : document[layer] ;
	}
}


function bestel(koopidint,titelstr,aantal){
	document.forms.bestellen.elements.koopid.value = koopidint;
	document.forms.bestellen.elements.titel.value = titelstr;
	document.forms.bestellen.elements.aantal.value = aantal;
	document.forms.bestellen.submit();
}

var isie6 = (navigator.appVersion.replace('MSIE 6.0','') == navigator.appVersion) ? false : true ;

function geefCommentaar(goed,commentaar){

	if(isie6 && goed=='fout'){
		alert(commentaar);
	}else{
		browser("commentaar").innerHTML = '<span class="' + goed + '">' +commentaar+'</span>' ;
		/* browser("commentaar").style.visibility = 'visible'; */
		browser("commentaar").style.display = 'inline'; 
		if(goed=='fout') window.location.href = '#top';
	
	}

}

