
function disableObject(object, status) {
	if (object) {
	alert(object.name);
		object.disabled = status;
	}
}


function redir(url){
	if (confirm("This link will transmit information to a Web site to which our site's Privacy Policy does not apply.\nYou are solely responsible for your interactions with that Web site.")){
		window.open(url);
	}
}