function confirmLink(text)
{
	if (confirm(text) != "") {
		return true;
	}
	else {
		return false;
	}
} 

function button(id, name) {
	if (document.all) {
		document.all(id).className = name;
	}
}

function button_image(id, pic) {
	if (document.all) {
		document.all(id).src = pic;
	}
	if(document.layers) {
		document['id'].src = pic;
	}
	if (document.getElementById) {
		document.getElementById(id).src = pic;
	}
}

function button_bg(id, pic) {
	if (document.all) {
		document.all(id).background = pic;
	}
}
