window.onload = function(){
	document.getElementById("Accept").onclick = function(){
		document.getElementById("confBtn").disabled = false;
	}
	document.getElementById("NG").onclick = function(){
		document.getElementById("confBtn").disabled = true;
	}
}