This repository has been archived by the owner on Apr 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathindex.html
438 lines (403 loc) · 22 KB
/
index.html
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>HTML 5 WYSIWYG Editor</title>
<link type="text/css" href="css/cupertino/jquery-ui-1.8.12.custom.css" rel="stylesheet" />
<link type="text/css" href="h5w/h5w.css" rel="stylesheet" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script>
<script type="text/javascript" src="h5w/h5w.js"></script>
<style>
.xv-to-remove, .xv-without-html {
background-color: #fefcf5;
border:1px solid #000;
padding:5px;
}
.g-adv {
width: 800px;
height: 100px;
margin:auto;
}
</style>
<script type="text/javascript">
$(function(){
if(location.protocol == "file:"){
var Content = "You must run this on http server";
alert(Content);
}else {
var Content = ($.ajax({
url: "exampletext.html",
dataType: "text",
async: false
}).responseText);
}
// This class is example - i use this to my project - XVweb
var XVwebFormater = {
parseReturnedXML : function(strToParse, strStart){
var str = strToParse.match(new RegExp("<"+strStart+"[^<]*(?:(?!<\/"+strStart+">)<[^<]*)*<\/"+strStart+">", "gi"));
if (str != null)
return str;
return [];
},
htmlspecialchars : function(p_string) {
p_string = p_string.replace(/&/g, '&');
p_string = p_string.replace(/</g, '<');
p_string = p_string.replace(/>/g, '>');
return p_string;
},
htmlspecialchars_decode : function(p_string) {
p_string = p_string.replace(/&/g, '&');
p_string = p_string.replace(/</g, '<');
p_string = p_string.replace(/>/g, '>');
return p_string;
},
parse : function(text){
var XVtags = ["include", "php", "delphi", "cpp", "java", "java5", "css", "javascript", "code", "vars", "file", "script"];
$.each(XVtags, function(index, value) {
$.each(XVwebFormater.parseReturnedXML(text, value), function(indexz, valuez) {
text = text.replace(valuez, "<pre class='xv-to-remove xv-without-html'>"+XVwebFormater.htmlspecialchars(valuez)+"</pre>");
});
});
return text;
},
DeleteFormat : function(){
$(this).find(".xv-without-html").html(function(index, oldhtml){
return oldhtml.replace(/(<([^>]+)>)/ig,"");
});
},
EditorToHTML : function(text){
matchResult = text.match(new RegExp("<pre class=\"xv-to-remove[^<]*(?:(?!<\/pre>)<[^<]*)*<\/pre>", "gi"));
if(matchResult != null){
$.each(matchResult, function(index, value){
text = text.replace(value, XVwebFormater.htmlspecialchars_decode(value.replace(/<pre(.*?)>/, "").replace(/<\/pre(.*?)>/, "")));
});
};
return text;
}
};
$("#demos").h5w({
content : XVwebFormater.parse(Content) , // here you can set content for editor
onChange : XVwebFormater.DeleteFormat, // you can delete this line
onTextarea : XVwebFormater.EditorToHTML, // you can delete this line
onVisual : XVwebFormater.parse, // you can delete this line
});
});
</script>
</head>
<body>
<div class="g-adv">
<!-- adv for me :] I need cash for coffe! -->
<script type="text/javascript"><!--
google_ad_client = "ca-pub-7650113987924443";
/* 728x90, utworzono 10-05-30 */
google_ad_slot = "5148700426";
google_ad_width = 728;
google_ad_height = 90;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<!-- end adv -->
</div>
<h1> <a href="https://github.com/bordeux/HTML-5-WYSIWYG-Editor/zipball/gh-pages">Download WYSIWYG EDITOR as .ZIP</a></h1>
<div id="demos">
<!-- HTML5WYSIWYG Editor START -->
<div class="h5w-main">
<!-- Tabs -->
<div class="h5w-tabs">
<ul>
<li><a href="#MainTools" data-h5w-lang="home">Home</a></li>
<li><a href="#Insert" data-h5w-lang="insert">Insert</a></li>
<li><a href="#HTMLelements" data-h5w-lang="htmlelements">HTML elements</a></li>
</ul>
<div style="float:right">
<a href="#undo" class="h5w-icon h5w-undo" data-h5w-function="undo" data-h5w-lang="undo|title" title="Undo"> </a>
<a href="#redo" class="h5w-icon h5w-redo" data-h5w-function="redo" data-h5w-lang="redo|title" title="Redo"> </a>
<a href="#selectall" class="h5w-icon h5w-selectall" data-h5w-function="selectall" data-h5w-lang="selectall|title" title="Select All"> </a>
</div>
<div id="MainTools" class="h5w-card">
<div class="h5w-section" >
<div class="h5w-group" style="width:110px;">
<a href="#paste" class="h5w-icon h5w-paste" data-h5w-function="paste" data-h5w-lang="paste|title|html" title="Paste">Paste</a>
<div>
<a href="#cut" class="h5w-icon h5w-cut" data-h5w-function="cut" data-h5w-lang="cut|title|html" title="Cut"> Cut </a>
<a href="#copy" class="h5w-icon h5w-copy" data-h5w-function="copy" data-h5w-lang="copy|title|html" title="Copy"> Copy </a>
</div>
</div>
<div class="h5w-group-seperator"></div>
<div class="h5w-group">
<div style="width:200px;">
<a href="#fonttype" class="h5w-icon h5w-fonttype" data-h5w-function="fonttype" data-h5w-lang="fonttype|title" title="Type font"><span style="font-family: Arial, Helvetica, sans-serif;">Arial</span></a>
<a href="#hilitecolorpicker" class="h5w-icon-nojs h5w-fonttype-picker" data-h5w-destination=".h5w-fonttype" data-h5w-onchange-function="functions.fonttype" data-h5w-lang="fonttypepicker|title" title="Font type picker">
<span class="ui-icon ui-icon-triangle-2-n-s"></span>
</a>
<a href="#fontsize" class="h5w-icon h5w-fontsize" data-h5w-function="fontsize" data-h5w-lang="fontsize|title" title="FontSize">11</a>
<a href="#hilitecolorpicker" class="h5w-icon-nojs h5w-fontsize-picker" data-h5w-destination=".h5w-fontsize" data-h5w-onchange-function="functions.fontsize" data-h5w-lang="fontsizepicker|title" title="Font size picker">
<span class="ui-icon ui-icon-triangle-2-n-s"></span>
</a>
</div>
<div style="clear:both;">
<a href="#bold" class="h5w-icon h5w-bold" data-h5w-function="bold" data-h5w-lang="bold|title" title="Bold"> </a>
<a href="#italic" class="h5w-icon h5w-italic" data-h5w-function="italic" data-h5w-lang="italic|title" title="Italic"> </a>
<a href="#underline" class="h5w-icon h5w-underline" data-h5w-function="underline" data-h5w-lang="underline|title" title="Underline"> </a>
<a href="#strike" class="h5w-icon h5w-strike" data-h5w-function="strike" data-h5w-lang="strike|title" title="Strike"> </a>
<a href="#subscript" class="h5w-icon h5w-subscript" data-h5w-function="subscript" data-h5w-lang="subscript|title" title="Subscript"> </a>
<a href="#superscript" class="h5w-icon h5w-superscript" data-h5w-function="superscript" data-h5w-lang="superscript|title" title="Superscript"> </a>
<a href="#seperator" class="h5w-seperator"></a>
<br style="clear:both" />
<a href="#fontcolor" class="h5w-icon h5w-fontcolor" data-h5w-function="fontcolor" data-h5w-lang="setfontcolor|title" title="Set font color"> </a>
<a href="#fontcolorpicker" class="h5w-picker h5w-font-picker" data-h5w-destination=".h5w-font-picker" data-h5w-onchange-function="functions.fontcolor" data-h5w-lang="fontcolorpicker|title" title="Font color picker" > </a>
<a href="#seperator" class="h5w-seperator"></a>
<a href="#fontcolor" class="h5w-icon h5w-hilitecolor" data-h5w-function="hilitecolor" data-h5w-lang="highlight|title" title="Highlight"> </a>
<a href="#hilitecolorpicker" class="h5w-picker h5w-hilitecolor-picker" data-h5w-destination=".h5w-hilitecolor-picker" data-h5w-onchange-function="functions.hilitecolor" data-h5w-lang="highlightcolorpicker|title" title="Highlight color picker"> </a>
<a href="#seperator" class="h5w-seperator"></a>
<a href="#removeformat" class="h5w-icon h5w-removeformat" data-h5w-function="removeformat" data-h5w-lang="removeformat|title" title="Remove format"> </a>
</div>
</div>
<div class="h5w-group-seperator"></div>
<div class="h5w-group">
<a href="#seperator" class="h5w-seperator"></a>
<a href="#hrule" class="h5w-icon h5w-hrule" data-h5w-function="hrule" data-h5w-lang="addrule|title" title="Add rule - hr"> </a>
<a href="#seperator" class="h5w-seperator" ></a>
<a href="#listordered" class="h5w-icon h5w-listordered" data-h5w-function="listordered" data-h5w-lang="addlistnumeric|title" title="List style - numeric"> </a>
<a href="#listunordered" class="h5w-icon h5w-listunordered" data-h5w-function="listunordered" data-h5w-lang="addlistbull|title" title="List style - bull"> </a>
<a href="#seperator" class="h5w-seperator" style="clear:both;" ></a>
<a href="#justifyleft" class="h5w-icon h5w-justifyleft" data-h5w-function="justifyleft" data-h5w-lang="leftjustify|title" title="Left justify"> </a>
<a href="#justifycenter" class="h5w-icon h5w-justifycenter" data-h5w-function="justifycenter" data-h5w-lang="centerjustify|title" title="Center justify"> </a>
<a href="#justifyright" class="h5w-icon h5w-justifyright" data-h5w-function="justifyright" data-h5w-lang="rightjustify|title" title="Right justify"> </a>
<a href="#seperator" class="h5w-seperator" style="clear:both;" ></a>
<a href="#indent" class="h5w-icon h5w-indent" data-h5w-function="indent" data-h5w-lang="ident|title" title="Indent" > </a>
<a href="#outdent" class="h5w-icon h5w-outdent" data-h5w-function="outdent" data-h5w-lang="outdent|title" title="Outdent"> </a>
<a href="#paragraph" class="h5w-icon h5w-paragraph" data-h5w-function="paragraph" data-h5w-lang="paragraph|title" title="Paragraph"> </a>
</div>
<div class="h5w-group-seperator"></div>
<div class="h5w-group">
<div class="h5w-style-selection h5w-style-picker">
<a class="h5w-icon" href="#h1" data-h5w-function="formatblock">
<div class="h5w-style-selection-preview" >
<h1 style="margin-top:0px;">AbCdEfGh</h1>
</div>
<div class="h5w-style-selection-caption" > H1 style </div>
</a>
<a class="h5w-icon" href="#h2" data-h5w-function="formatblock">
<div class="h5w-style-selection-preview" >
<h2 style="margin-top:0px;">AbCdEfGh</h2>
</div>
<div class="h5w-style-selection-caption" > H2 style </div>
</a>
<a class="h5w-icon" href="#h3" data-h5w-function="formatblock">
<div class="h5w-style-selection-preview" >
<h3 style="margin-top:0px;">AbCdEfGh</h3>
</div>
<div class="h5w-style-selection-caption" > H3 style </div>
</a>
<a class="h5w-icon" href="#h4" data-h5w-function="formatblock">
<div class="h5w-style-selection-preview" >
<h4 style="margin-top:0px;">AbCdEfGh</h4>
</div>
<div class="h5w-style-selection-caption" > H4 style </div>
</a>
<a class="h5w-icon" href="#h5" data-h5w-function="formatblock">
<div class="h5w-style-selection-preview" >
<h5 style="margin-top:0px;">AbCdEfGh</h5>
</div>
<div class="h5w-style-selection-caption" > H5 style </div>
</a>
<a class="h5w-icon" href="#h6" data-h5w-function="formatblock">
<div class="h5w-style-selection-preview" >
<h6 style="margin-top:0px;">AbCdEfGh</h6>
</div>
<div class="h5w-style-selection-caption" > H6 style </div>
</a>
<a class="h5w-icon" href="#blockquote" data-h5w-function="formatblock">
<div class="h5w-style-selection-preview" style="text-align:left">
Text Text
<blockquote cite="http://www.bordeux.net">AbCdEfGh</blockquote>
Text Text
</div>
<div class="h5w-style-selection-caption" > Blockquote </div>
</a>
</div>
</div>
<div class="h5w-group" style="width: 20px; height:50px;">
<a href="#toDown" class="h5w-scroll" data-h5w-scroll="-=50" data-h5w-toscroll=".h5w-style-picker">
<div class="ui-state-default ui-corner-all ">
<span class="ui-icon ui-icon-arrowthickstop-1-n"></span>
</div>
</a>
<a href="#toDown" class="h5w-scroll" data-h5w-scroll="+=50" data-h5w-toscroll=".h5w-style-picker">
<div class="ui-state-default ui-corner-all" style="margin-top:10px;">
<span class="ui-icon ui-icon-arrowthickstop-1-s"></span>
</div>
</a>
</div>
<div class="h5w-group-seperator"></div>
</div>
</div>
<div id="Insert" class="h5w-card">
<div class="h5w-section" >
<div class="h5w-group">
<a href="#tablepicker" class="h5w-icon-nojs h5w-table h5w-tablepicker" data-h5w-onselect-function="functions.table" title="Insert table" data-h5w-lang="table|title|html"> Table </a>
<a href="#seperator" class="h5w-group-seperator"></a>
<a href="#insertimage" class="h5w-icon h5w-insertimage" data-h5w-function="insertimage" data-h5w-lang="image|title|html" title="Insert image"> Image </a>
<a href="#seperator" class="h5w-group-seperator"></a>
<a href="#createlink" class="h5w-icon h5w-createlink" data-h5w-function="createlink" data-h5w-lang="link|title|html" title="Insert URL"> Link </a>
<a href="#unlink" class="h5w-icon h5w-unlink" data-h5w-function="unlink" title="Remove URL from text" data-h5w-lang="unlink|title|html"> Unlink </a>
</div>
</div>
</div>
<div id="HTMLelements" class="h5w-card">
<div class="h5w-section" style="width: 800px; ">
<div class="h5w-group">
<div class="h5w-style-inserthtml">
<a href="#inserthtml" class="h5w-icon h5w-inserthtml" data-h5w-function="inserthtml" data-h5w-lang="insetfieldset|title" title="Insert fieldset">
<fieldset><legend>Example</legend>ExampleText</fieldset>
</a>
<a href="#inserthtml" class="h5w-icon h5w-inserthtml" data-h5w-function="inserthtml" data-h5w-lang="inserthtmlform|title" title="Insert form">
<form action="?" method="post">HTML Form</form>
</a>
<a href="#inserthtml" class="h5w-icon h5w-inserthtml" data-h5w-function="inserthtml" title="Insert text input" data-h5w-lang="insertinputtext|title">
<input type="text" value="AbCdEfGh" name="name" />
</a>
<a href="#inserthtml" class="h5w-icon h5w-inserthtml" data-h5w-function="inserthtml" title="Insert password input" data-h5w-lang="insertinputpassword|title">
<input type="password" value="AbCdEfGh" name="name" />
</a>
<a href="#inserthtml" class="h5w-icon h5w-inserthtml" data-h5w-function="inserthtml" title="Insert checkbox input" data-h5w-lang="insertinputcheckbox|title">
<input type="checkbox" value="AbCdEfGh" name="name" />
</a>
<a href="#inserthtml" class="h5w-icon h5w-inserthtml" data-h5w-function="inserthtml" title="Insert radio input" data-h5w-lang="insertinputradio|title">
<input type="radio" value="AbCdEfGh" name="name" />
</a>
<a href="#inserthtml" class="h5w-icon h5w-inserthtml" data-h5w-function="inserthtml" title="Insert submit button" data-h5w-lang="insertinputsubmit|title">
<input type="submit" value="Submit" name="name" />
</a>
<a href="#inserthtml" class="h5w-icon h5w-inserthtml" data-h5w-function="inserthtml" title="Insert button" data-h5w-lang="insertinputbutton|title">
<input type="button" value="Button" name="name" />
</a>
<a href="#inserthtml" class="h5w-icon h5w-inserthtml" data-h5w-function="inserthtml" title="Insert textarea" data-h5w-lang="inserttextarea|title">
<textarea name="name"></textarea>
</a>
</div>
</div>
<div class="h5w-group" style="width: 20px; height:50px;">
<a href="#toDown" class="h5w-scroll" data-h5w-scroll="-=55" data-h5w-toscroll=".h5w-style-inserthtml">
<div class="ui-state-default ui-corner-all ">
<span class="ui-icon ui-icon-arrowthickstop-1-n"></span>
</div>
</a>
<a href="#toDown" class="h5w-scroll" data-h5w-scroll="+=55" data-h5w-toscroll=".h5w-style-inserthtml">
<div class="ui-state-default ui-corner-all" style="margin-top:10px;">
<span class="ui-icon ui-icon-arrowthickstop-1-s"></span>
</div>
</a>
</div>
</div>
</div>
<div class="h5w-tabs-bottom" >
<div id="h5w-id-content" class="h5w-content" contenteditable="true" spellcheck="true"></div>
<textarea id="h5w-textarea-id" class="h5w-texarea" ></textarea>
<ul>
<li><a href="#h5w-id-content" class="h5w-refresh-editor" data-h5w-lang="visual">Visual</a></li>
<li><a href="#h5w-textarea-id" class="h5w-refresh-textarea" data-h5w-lang="sourcehtml">Source HTML</a></li>
</ul>
</div>
</div>
<div class="h5w-picker-area">
<div class="h5w-picker-red"></div>
<div class="h5w-picker-green"></div>
<div class="h5w-picker-blue"></div>
<div class="h5w-picker-opacity"></div>
<div class="h5w-picker-swatch" class="ui-widget-content ui-corner-all" style="background:white;"></div>
<div style="clear:both" ></div>
</div>
<div class="h5w-tablepicker-area"></div>
<div class="h5w-fontsize-picker-area">
<div class="h5w-fontsize-picker-size"></div>
<div style="clear:both" ></div>
</div>
<div class="h5w-font-picker-area">
<a href="#fonttype" class="h5w-icon h5w-font-type" data-h5w-function="fonttype" title="Type font"><span style="font-family: Arial, Helvetica, sans-serif;">Arial</span></a>
<a href="#fonttype" class="h5w-icon h5w-font-type" data-h5w-function="fonttype" title="Type font"><span style="font-family: Courier new,courier,monospace">Courier New</span></a>
<a href="#fonttype" class="h5w-icon h5w-font-type" data-h5w-function="fonttype" title="Type font"><span style="font-family: Georgia,times new roman,times,serif">Georgia</span></a>
<a href="#fonttype" class="h5w-icon h5w-font-type" data-h5w-function="fonttype" title="Type font"><span style="font-family: Tahoma,arial,helvetica,sans-serif">Tahoma</span></a>
<a href="#fonttype" class="h5w-icon h5w-font-type" data-h5w-function="fonttype" title="Type font"><span style="font-family: Times new roman,times,serif">Times New Roman</span></a>
<a href="#fonttype" class="h5w-icon h5w-font-type" data-h5w-function="fonttype" title="Type font"><span style="font-family: Verdana,arial,helvetica,sans-serif">Verdana</span></a>
<a href="#fonttype" class="h5w-icon h5w-font-type" data-h5w-function="fonttype" title="Type font"><span style="font-family: Impact">impact</span></a>
<a href="#fonttype" class="h5w-icon h5w-font-type" data-h5w-function="fonttype" title="Type font"><span style="font-family: Wingdings">WingDings</span></a>
<div style="clear:both" ></div>
</div>
<div class="h5w-context-menu">
<ul>
<li><a href="#" class="h5w-icon-js h5w-c-delete" data-h5w-function="delete" data-h5w-lang="delete" data-h5w-result="true">Delete</a></li>
<li><a href="#" class="h5w-icon-js h5w-c-cut" data-h5w-function="cut" data-h5w-result="true" data-h5w-lang="cut">Cut</a></li>
<li><a href="#" class="h5w-icon-js h5w-c-copy" data-h5w-function="copy" data-h5w-result="true" data-h5w-lang="copy">Copy</a></li>
<li><a href="#" class="h5w-icon-js h5w-c-paste" data-h5w-function="paste" data-h5w-result="true" data-h5w-lang="paste">Paste</a></li>
<li><a href="#" class="h5w-c-options" data-h5w-lang="elementoptions">Element options</a>
<ul class="h5w-c-options-element">
</ul>
</li>
<li><a href="#" class="h5w-c-attributes" data-h5w-lang="attributes">Attributes</a>
<ul class="h5w-c-attr">
</ul>
</li>
<li><a href="#" class="h5w-c-quit h5w-c-seperator" data-h5w-lang="quit">Quit</a></li>
</ul>
</div>
</div>
<!-- HTML5WYSIWYG Editor END -->
</div>
<table style="margin-bottom: 300px;">
<tr>
<td>
<!-- GET CONTENT -->
<a href="#" class="get-result">get result</a>
<textarea id="result"></textarea>
<script>
$(function(){
$(".get-result").click(function(){
resultEditHTML = $("#demos").getContent();
$("#result").html(resultEditHTML);
return false;
});
});
</script>
<!-- GET CONTENT END-->
</td>
<td>
<!-- LANGUAGE SUPPORT -->
<script type="text/javascript" src="h5w/langs/lang_pl.js"></script> <!-- LOAD POLISH LANG -->
<script type="text/javascript" src="h5w/langs/lang_ru.js"></script> <!-- LOAD POLISH LANG -->
<a href="#" class="change-language-pl">Change language to Polish</a>
<a href="#" class="change-language-ru">Change language to Russian</a>
<script>
$(function(){
$(".change-language-pl").click(function(){
$("#demos").loadLang(h5w_lang_pl); //load language
return false;
});
$(".change-language-ru").click(function(){
$("#demos").loadLang(h5w_lang_ru); //load language
return false;
});
});
</script>
<!-- LANGUAGE SUPPORT END -->
</td>
<td>
<!-- JQUERY THEME ROLLING -->
<script>
$(document).ready(function(){
$('#switcher').themeswitcher();
});
</script>
<script type="text/javascript" src="http://jqueryui.com/themeroller/themeswitchertool/">
</script>
<div id="switcher"></div>
<!-- JQUERY THEME ROLLING END -->
</td>
</tr>
</table>
</body>
</html>