| 1 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 2 | <html xmlns="http://www.w3.org/1999/xhtml"> |
|---|
| 3 | <head> |
|---|
| 4 | <title></title> |
|---|
| 5 | <script src="ckeditor/ckeditor.js" type="text/javascript"></script> |
|---|
| 6 | <script type="text/javascript"> |
|---|
| 7 | var title = "Test Title"; |
|---|
| 8 | var height = "700"; |
|---|
| 9 | var width = "1200"; |
|---|
| 10 | var page = "HTMLPage.htm"; |
|---|
| 11 | var rc = new Array(0, 0); |
|---|
| 12 | function doIt() |
|---|
| 13 | { |
|---|
| 14 | var param = "" + page + "?Title=" + title + "&page=" + page + ""; |
|---|
| 15 | var parm2 = "dialogHeight:" + height + " px;dialogWidth:" + width + " px;status: no;unadorned: no;scroll: no;help: no;resizable: no;"; |
|---|
| 16 | rc = window.showModalDialog(param,'',parm2); |
|---|
| 17 | } |
|---|
| 18 | </script> |
|---|
| 19 | </head> |
|---|
| 20 | <body> |
|---|
| 21 | <div id="cke"> |
|---|
| 22 | </div> |
|---|
| 23 | <script type="text/javascript"> |
|---|
| 24 | CKEDITOR.replace('cke'); |
|---|
| 25 | </script> |
|---|
| 26 | <input id="Button1" type="button" onclick="doIt(); return false;" value="button" /> |
|---|
| 27 | </body> |
|---|
| 28 | </html> |
|---|