Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.

My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!-- TinyMCE -->
<?php echo js('tiny_mce/tiny_mce.js'); ?>

<script type="text/javascript">

	// Basic options
	tinyMCE.init({
		
		mode : "specific_textareas",
		editor_selector : "wysiwyg-simple",
		editor_class : "wysiwyg-simple",
		theme : "advanced",
		skin : "o2k7",
		skin_variant : "silver",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		language : "<?php echo CURRENT_LANGUAGE;?>",
		width : 410,
		force_p_newlines : false,
		force_br_newlines : true,
		forced_root_block : '',
		button_tile_map : true,
	
		// Theme options
		theme_advanced_buttons1 : "bold,italic,underline,strikethrough",
		theme_advanced_buttons2 : '',

		valid_elements : 'b/strong,i/em,u,strike,br'
	});


	// General options
	tinyMCE.init({

		mode : "specific_textareas",
		editor_selector : "wysiwyg-advanced",
		editor_class : "wysiwyg-advanced",
		
		language : "<?php echo CURRENT_LANGUAGE;?>",
		convert_urls : false,

		width : 665,
		height : 360,
		constrain_menus : true,
		
		plugins : "safari,pagebreak,style,advhr,advimage,advlink,emotions,inlinepopups,preview,media,contextmenu,paste,fullscreen,noneditable,visualchars,xhtmlxtras,template,tinycimm,pdw",

		// Theme options
		theme : "advanced",
		skin : "o2k7",
		skin_variant : "silver",
		theme_advanced_buttons1 : "bold,italic,underline,strikethrough,blockquote,|,bullist,numlist,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect,fontselect,fontsizeselect,pdw_toggle",
		theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,outdent,indent,|,bullist,numlist,|,sub,sup,|,link,unlink,anchor,|,image,tinycimm-image,media,|,forecolor,backcolor,|,charmap,emotions,advhr,|,preview,fullscreen,code,|,undo,redo",
		theme_advanced_buttons3 : "",
		theme_advanced_toolbar_location : "top",
		theme_advanced_toolbar_align : "left",
		theme_advanced_resizing : true,
		theme_advanced_statusbar_location : "bottom",
		theme_advanced_resize_horizontal : false,

		document_base_url: "<?php echo BASE_URI ;?>",
		content_css : "<?php echo css_path('style.css'); ?>",

		pdw_toggle_on : 1,
		pdw_toggle_toolbars : "2,3",

		button_tile_map : true,		
		media_strict: false,
		
		file_browser_callback : 'tinycimm',
		tinycimm_image_controller : '<?php echo $this->config->item('tinycimm_image_controller');?>',
		tinycimm_link_controller : '<?php echo $this->config->item('tinycimm_link_controller');?>',
		tinycimm_assets_path : '<?php echo $this->config->item('tinycimm_asset_path');?>',
		tinycimm_resize_default_intial_width : '<?php echo $this->config->item('default_initial_width', 'tinycimm_image_resize_config');?>',
		tinycimm_thumb_width : '<?php echo $this->config->item('tinycimm_image_thumbnail_default_width');?>',
		tinycimm_thumb_height : '<?php echo $this->config->item('tinycimm_image_thumbnail_default_height');?>',
		tinycimm_thumb_lightbox_class : '<?php echo $this->config->item('tinycimm_image_thumbnail_default_lightbox_class');?>',
		tinycimm_thumb_lightbox_gallery : '<?php echo $this->config->item('tinycimm_image_thumbnail_default_lightbox_gallery');?>',

		// Default ruleset
		valid_elements : "@[id|class|style|title|dir|lang|xml::lang|onclick|ondblclick|"
			+ "onmousedown|onmouseup|onmouseover|onmousemove|onmouseout|onkeypress|"
			+ "onkeydown|onkeyup],a[rel|rev|charset|hreflang|tabindex|accesskey|type|"
			+ "name|href|target|title|class|onfocus|onblur],strong/b,em/i,strike,u,"
			+ "#p[align],-ol[type|compact],-ul[type|compact],-li,br,img[longdesc|usemap|"
			+ "src|border|alt=|title|hspace|vspace|width|height|align],-sub,-sup,"
			+ "-blockquote,-table[border=0|cellspacing|cellpadding|width|frame|rules|"
			+ "height|align|summary|bgcolor|background|bordercolor],-tr[rowspan|width|"
			+ "height|align|valign|bgcolor|background|bordercolor],tbody,thead,tfoot,"
			+ "#td[colspan|rowspan|width|height|align|valign|bgcolor|background|bordercolor"
			+ "|scope],#th[colspan|rowspan|width|height|align|valign|scope],caption,-div,"
			+ "-span,-code,-pre,address,-h1,-h2,-h3,-h4,-h5,-h6,hr[size|noshade],-font[face"
			+ "|size|color],dd,dl,dt,cite,abbr,acronym,del[datetime|cite],ins[datetime|cite],"
			+ "object[classid|width|height|codebase|*],param[name|value|_value],"
			+ "script[src|type],map[name],area[shape|coords|href|alt|target],bdo,"
			+ "button,col[align|char|charoff|span|valign|width],colgroup[align|char|charoff|span|"
			+ "valign|width],dfn,fieldset,form[action|accept|accept-charset|enctype|method],"
			+ "input[accept|alt|checked|disabled|maxlength|name|readonly|size|src|type|value],"
			+ "kbd,label[for],legend,noscript,optgroup[label|disabled],option[disabled|label|selected|value],"
			+ "q[cite],samp,select[disabled|multiple|name|size],small,"
			+ "textarea[cols|rows|disabled|name|readonly],tt,var,big"

			// Customisation
			+',embed[width|height|name|flashvars|src|bgcolor|align|play|loop|quality|allowscriptaccess|type|pluginspage]'

	});


	function tinycimm(field_name, url, type, win) {

		if ((type != 'image') && (field_name != 'href')) return;

		if (type == 'image') {
			// image manager
			var url = win.tinyMCE.baseURI.relative+'/plugins/tinycimm/'+type+'.htm';
	
			tinyMCE.activeEditor.windowManager.open({
				file : url,
				width : 574,
				height : 462,
				resizable : "yes",
				inline : "yes",  
				close_previous : "no"
			}, {
				window : win,
				tinyMCEPopup : win.tinyMCEPopup,
				input : field_name
			});
			return false;
		} else {
			// link manager
			var url = win.tinyMCE.baseURI.relative+'/plugins/tinycimm/link.htm';
	
			tinyMCE.activeEditor.windowManager.open({
				file : url,
				width : 340,
				height : 362,
				resizable : "yes",
				inline : "yes",  
				close_previous : "no"
			}, {
				window : win,
				tinyMCEPopup : win.tinyMCEPopup,
				input : field_name
			});
		}
	}


	// Example content CSS (should be your site CSS)
	//content_css : "css/content.css",

	// Drop lists for link/image/media/template dialogs
	//template_external_list_url : "lists/template_list.js",
	//external_link_list_url : "lists/link_list.js",
	//external_image_list_url : "lists/image_list.js",
	//media_external_list_url : "lists/media_list.js",

	// Replace values for the template plugin
	/*template_replace_values : {
		username : "Some User",
		staffid : "991234"
	}*/
	
</script>
<!-- /TinyMCE -->