function burst(url, target, width, height) {
	if (width > window.screen.width - 50) width = window.screen.width - 50;
	if (height > window.screen.height - 100) height = window.screen.height - 100;

	var x = (window.screen.width - width) / 2;
	var y = (window.screen.height - height) / 3;
	var toolbar = (target == 'printer') ? 'yes' : 'no';
	var foo = window.open(url, target, 'width='+width+',height='+height+',left='+x+',top='+y+',menubar=no,toolbar='+toolbar+',location=no,scrollbars=yes,resizable=yes,status=yes');
	foo.focus();
	return false;
}

function image_swap(id, src) {
	document.getElementById(id).src = src;
	return 0;
}

function replace_html(id, html) {
	document.getElementById(id).innerHTML = html;
	return 0;
}
