function confirmBox (message, successUrl) {
	ok=confirm(message);
	if (ok==1) {
        	window.location = successUrl;
	}
}

function terms(termsHtml) {
	popup = window.open(termsHtml,"CCI","width=500,height=500,toolbar=no,resizable=yes,scrollbars=yes,menubar=no,status=no");
	popup.focus();
}