// JavaScript Document

function infobox (html, title, width, height) {
	
	html = '<p>&nbsp;</p>'+html;
	
	$.fancybox({
			'content' : html,
			'title' : title,
			'titlePosition' : 'inside',
			'padding': 10,
			'width': width,
			'height': height,
			'autoDimensions': false
		});
}