function sahara_create_modal(foo, ourtype){
	//alert("in create modal");
	var content;
	
	content = "<table bgcolor='#d9d9da'><tr>";
	content += "<td>" + foo + "</td>";
	content += "</tr></table>";
	
	options = $.extend({title: ourtype, modal: true});
	var dialog = new Boxy(content, options);
	allDialogs.push(dialog);
	return false;
}


