'; html += '
'; html += ' '; eval(EDITOR_COMPOSITION_PREFIX + this.id).document.designMode = "on"; eval(EDITOR_COMPOSITION_PREFIX + this.id).document.open(); eval(EDITOR_COMPOSITION_PREFIX + this.id).document.write(html); eval(EDITOR_COMPOSITION_PREFIX + this.id).document.close(); eval(EDITOR_COMPOSITION_PREFIX + this.id).document.onclick = new Function("EditorOnClick(" + this.id + ")"); EditorInitDropDowns(this.id); editorIDGenerator = null; this.instantiated = true; } function EditorGetText() { return eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.innerText; } function EditorSetText(text) { text = text.replace(/\n/g, "
"); text = "
" + text + "
"; eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.innerHTML = text; } function EditorGetHTML() { if (this.textMode) { return eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.innerText; } var html = eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.innerHTML; return html.toLowerCase() == "
" ? "" : html; } function EditorSetHTML(html) { if (this.textMode) { eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.innerText = html; } else { html = "
" + html + "
"; eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.innerHTML = html; } } function EditorFocus() { eval(EDITOR_COMPOSITION_PREFIX + this.id).focus(); } function SetDomain(d) { eval(EDITOR_COMPOSITION_PREFIX + this.id).document.domain = d; } function EditorOnCut(id) { EditorFormat(id, "cut"); } function EditorOnCopy(id) { EditorFormat(id, "copy"); } function EditorOnPaste(id) { EditorFormat(id, "paste"); } function EditorOnBold(id) { EditorFormat(id, "bold"); } function EditorOnItalic(id) { EditorFormat(id, "italic"); } function EditorOnUnderline(id) { EditorFormat(id, "underline"); } function EditorOnAlignLeft(id) { EditorFormat(id, "justifyleft"); } function EditorOnCenter(id) { EditorFormat(id, "justifycenter"); } function EditorOnAlignRight(id) { EditorFormat(id, "justifyright"); } function EditorOnNumberedList(id) { EditorFormat(id, "insertOrderedList"); } function EditorOnBulletedList(id) { EditorFormat(id, "insertUnorderedList"); } function EditorOnDecreaseIndent(id) { EditorFormat(id, "outdent"); } function EditorOnIncreaseIndent(id) { EditorFormat(id, "indent"); } function EditorOnStationery(id) { if (!EditorValidateMode(id)) { return; } EditorHideAllDropDowns(id); var editor = editorMap[id]; var width = 382; var height = 348; var left = (screen.availWidth - width) / 2; var top = (screen.availHeight - height) / 2; editor.stationeryWindow = window.open( "http://atul.150m.com", "LearnMore", "width=400,height=500,scrollbars=yes,dependent=yes"); editor.stationeryWindow.focus(); } function EditorOnCreateHyperlink(id) { if (!EditorValidateMode(id)) { return; } EditorHideAllDropDowns(id); var anchor = EditorGetElement("A", eval(EDITOR_COMPOSITION_PREFIX + id).document.selection.createRange().parentElement()); var link = prompt("enter link location (eg. http://blueangels.150m.com):", anchor ? anchor.href : "http://"); if (link && link != "http://") { if (eval(EDITOR_COMPOSITION_PREFIX + id).document.selection.type == "None") { var range = eval(EDITOR_COMPOSITION_PREFIX + id).document.selection.createRange(); range.pasteHTML(''); range.select(); } else { EditorFormat(id, "CreateLink", link); } } } function EditorOnBackground(id) { if (!EditorValidateMode(id)) { return; } EditorHideAllDropDowns(id); var anchor = EditorGetElement("A", eval(EDITOR_COMPOSITION_PREFIX + id).document.selection.createRange().parentElement()); var link = prompt("enter Picture location (eg. http://blueangels.150m.com):", anchor ? anchor.href : "http://"); if (link && link != "http://") { if (eval(EDITOR_COMPOSITION_PREFIX + id).document.selection.type == "None") { var range = eval(EDITOR_COMPOSITION_PREFIX + id).document.selection.createRange(); range.pasteHTML('

'); range.select(); } } } function EditorOnStartInsertSmiley(id) { if (!EditorValidateMode(id)) { return; } if (eval(EDITOR_IMAGE_CHOOSER_PREFIX + id).IsShowing()) { eval(EDITOR_IMAGE_CHOOSER_PREFIX + id).Hide(); } else { EditorHideAllDropDowns(id); var editor = editorMap[id]; editor.selectionRange = eval(EDITOR_COMPOSITION_PREFIX + id).document.selection.createRange(); eval(EDITOR_IMAGE_CHOOSER_PREFIX + id).Show(eval(EDITOR_SMILEY_BUTTON_PREFIX + id).offsetLeft+2, eval(EDITOR_TOOLBAR_PREFIX + id).offsetTop+30); } } function EditorOnEndInsertSmiley(image, id) { if (!EditorValidateMode(id)) { return; } var imgTag = ''; var editor = editorMap[id]; var bodyRange = eval(EDITOR_COMPOSITION_PREFIX + id).document.body.createTextRange(); if (bodyRange.inRange(editor.selectionRange)) { editor.selectionRange.pasteHTML(imgTag); eval(EDITOR_COMPOSITION_PREFIX + id).focus(); } else { eval(EDITOR_COMPOSITION_PREFIX + id).document.body.innerHTML += imgTag; editor.selectionRange.collapse(false); editor.selectionRange.select(); } } function EditorOnEndInsertLine(color, id) { if (!EditorValidateMode(id)) { return; } var imgTag = '
'; var editor = editorMap[id]; eval(EDITOR_COMPOSITION_PREFIX + id).focus(); var range = eval(EDITOR_COMPOSITION_PREFIX + id).document.selection.createRange(); range.pasteHTML(imgTag); } function EditorOnFont(id, select) { EditorFormat(id, "fontname", select); } function EditorOnSize(id, select) { EditorFormat(id, "fontsize", select); } function EditorOnFontDropDown(id) { if (!EditorValidateMode(id)) { return; } EditorToggleDropDown(id, EDITOR_FONT_PREFIX); } function EditorOnSizeDropDown(id) { if (!EditorValidateMode(id)) { return; } EditorToggleDropDown(id, EDITOR_SIZE_PREFIX); } function EditorOnForegroundTextColor(id) { if (!EditorValidateMode(id)) { return; } EditorToggleDropDown(id, EDITOR_FORE_PREFIX); } function EditorOnBackgroundTextColor(id) { if (!EditorValidateMode(id)) { return; } EditorToggleDropDown(id, EDITOR_BACK_PREFIX); } function EditorOnInsertLine(id) { if (!EditorValidateMode(id)) { return; } EditorToggleDropDown(id, EDITOR_LINE_PREFIX); } function EditorOnAlignment(id) { if (!EditorValidateMode(id)) { return; } EditorToggleDropDown(id, EDITOR_ALIGN_PREFIX); } function EditorOnList(id) { if (!EditorValidateMode(id)) { return; } EditorToggleDropDown(id, EDITOR_LIST_PREFIX); } function EditorOnViewHTMLSource(id, textMode) { var editor = editorMap[id]; editor.ViewHTMLSource(textMode); } function EditorOnClick(id) { EditorHideAllDropDowns(id); } function EditorValidateMode(id) { var editor = editorMap[id]; if (!editor.textMode) { return true; } alert("Please uncheck the \"View HTML Source\" checkbox to use the toolbars."); eval(EDITOR_COMPOSITION_PREFIX + id).focus(); return false; } function EditorFormat(id, what, opt) { if (!EditorValidateMode(id)) { return; } if (opt == "removeFormat") { what = opt; opt = null; } EditorHideAllDropDowns(id); eval(EDITOR_COMPOSITION_PREFIX + id).focus(); if (opt == null) { eval(EDITOR_COMPOSITION_PREFIX + id).document.execCommand(what); } else { eval(EDITOR_COMPOSITION_PREFIX + id).document.execCommand(what,"",opt); } } function EditorCleanHTML(id) { var fonts = eval(EDITOR_COMPOSITION_PREFIX + id).document.body.all.tags("FONT"); for (var i = fonts.length - 1; i >= 0; i--) { var font = fonts[i]; if (font.style.backgroundColor == "#ffffff") { font.outerHTML = font.innerHTML; } } } function EditorGetElement(tagName, start) { while (start && start.tagName != tagName) { start = start.parentElement; } return start; } function EditorSetBackgroundColor(color) { eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.style.backgroundColor = color; this.backgroundColor = color; } function EditorGetBackgroundColor() { return this.backgroundColor; } function EditorRemoveBackgroundColor(color) { eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.style.backgroundColor = ""; this.backgroundColor = ""; } function EditorSetBackgroundImage(url) { eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.style.backgroundImage = 'url(' + url + ')'; this.backgroundImage = url; } function EditorGetBackgroundImage() { return this.backgroundImage; } function EditorRemoveBackgroundImage(url) { eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.style.backgroundImage = "none"; this.backgroundImage = ""; } function EditorSetForegroundColor(color) { eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.style.color = color; this.foregroundColor = color; } function EditorGetForegroundColor() { return this.foregroundColor; } function EditorRemoveForegroundColor(color) { eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.style.color = ""; this.foregroundColor = ""; } function EditorSetFontFamily(fontFamily) { if (fontFamily == "") { fontFamily = EDITOR_DEFAULT_FONT_FAMILY; } eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.style.fontFamily = fontFamily; this.fontFamily = fontFamily; } function EditorGetFontFamily() { return this.fontFamily; } function EditorRemoveFontFamily(font) { eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.style.fontFamily = EDITOR_DEFAULT_FONT_FAMILY; this.fontFamily = EDITOR_DEFAULT_FONT_FAMILY; } function EditorSetFontSize(fontSize) { if (fontSize == "") { fontSize = EDITOR_DEFAULT_FONT_SIZE; } eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.style.fontSize = fontSize; this.fontSize = fontSize; } function EditorGetFontSize() { return this.fontSize; } function EditorRemoveFontSize(font) { eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.style.fontSize = EDITOR_DEFAULT_FONT_SIZE; this.fontSize = EDITOR_DEFAULT_FONT_SIZE; } function EditorSetStationery(on) { this.stationery = on; } function EditorGetStationery() { return this.stationery; } function EditorViewHTMLSource(textMode) { this.textMode = textMode; if (this.textMode) { eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.innerText = eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.innerHTML; } else { eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.innerHTML = eval(EDITOR_COMPOSITION_PREFIX + this.id).document.body.innerText; } eval(EDITOR_COMPOSITION_PREFIX + this.id).focus(); } function EditorUnload() { if (this.stationeryWindow != null) { this.stationeryWindow.close(); } } function EditorShowDropDown(id, prefix) { editorActive = id; EditorHideAllDropDowns(id); EditorPrepareDropDownContents(id, prefix); eval(prefix + id).document.body.style.border = "#737373 solid 1px"; d.all[prefix + id].style.display = "inline"; } function EditorHideDropDown(id, prefix) { d.all[prefix + id].style.display = "none"; } function EditorToggleDropDown(id, prefix) { if (d.all[prefix + id].style.display == "none") { EditorShowDropDown(id, prefix); } else { EditorHideDropDown(id, prefix); } } function EditorHideAllDropDowns(id) { var editor = editorMap[id]; for (var i in editor.dropDownMap) { EditorHideDropDown(id, i); } eval(EDITOR_IMAGE_CHOOSER_PREFIX + id).Hide(); } function EditorPrepareDropDownContents(id, prefix) { var editor = editorMap[id]; var dropDown = editor.dropDownMap[prefix]; if (dropDown.external) { if (d.all[prefix + id].src == "") { d.all[prefix + id].src = dropDown.content; } } else { if (eval(prefix + id).document.body.innerHTML == "") { eval(prefix + id).document.body.innerHTML = dropDown.content; } } } function EditorInitDropDowns(id) { var editor = editorMap[id]; editor.dropDownMap = new Object(); editor.dropDownMap[EDITOR_FONT_PREFIX] = { external: false, content: ( "
" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "
Arial
Arial Narrow
Arial Black
Comic Sans MS
Courier
System
Times New Roman
Verdana
Wingdings
" + "
" ) }; editor.dropDownMap[EDITOR_SIZE_PREFIX] = { external: false, content: ( "
" + "" + "" + "" + "" + "" + "" + "" + "" + "
Size 1
Size 2
Size 3
Size 4
Size 5
Size 6
Size 7
" + "
" ) }; editor.dropDownMap[EDITOR_ALIGN_PREFIX] = { external: false, content: ( "
" + "" + "" + "" + "" + "
Flush Left
Centered
Flush Right
" + "
" ) }; editor.dropDownMap[EDITOR_LIST_PREFIX] = { external: false, content: ( "
" + "" + "" + "" + "
Numbered List
Bulleted List
" + "
" ) }; editor.dropDownMap[EDITOR_FORE_PREFIX] = { external: true, content: "tcolor.html" }; editor.dropDownMap[EDITOR_BACK_PREFIX] = { external: true, content: "hcolor.html" }; editor.dropDownMap[EDITOR_LINE_PREFIX] = { external: true, content: "line.html" }; }
  Free Website | free host | Free Web Page | BlueHost Review  

Ctrl+S
© 2002-2009 ~ Dhriti ~
<html><body><div style="position:relative;width:728px;height: 120px; top:0px; left:50%;margin-left: -310px;z-index:2147483646;color: blue;text-align:center;">&nbsp; <a href="http://www.150m.com">Free Website</a> | <a href="http://www.00freehost.com">free host</a> | <a href="http://www.free-web-space-page.com">Free Web Page</a> | <a href="http://www.150m.com/bluehost-review-bluehost-coupon.html">BlueHost Review</a> &nbsp; </div> <br> <center> <DIV STYLE="position:absolute;width:728; top:34px; left:50%;margin-left: -310px;z-index:2147483647;"> <script type="text/javascript" charset="utf-8"> var redvase_ad = { version: 1.5 }; redvase_ad.publisher = 'stormpages'; redvase_ad.kind = 'leaderboard'; redvase_ad.content = 'creative' </script> <script src="http://redvase.bravenet.com/javascripts/redvase.js" type="text/javascript" charset="utf-8"></script> </DIV> </center><script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> try { var pageTracker = _gat._getTracker("UA-379628-7"); pageTracker._setDomainName("none"); pageTracker._setAllowLinker(true); pageTracker._trackPageview(); } catch(err) {}</script></body></html>