function confirmLink(object,str) {
	if (confirm(str)) {
		location.href.value = object.href;
		return true;
	} else {
		return false;
	}
}