<HTML xmlns:mymenu xmlns:mytb>
<HEAD>
<STYLE>
iframe {
        width: 100%;
        height: 90%;
        border: 2px inset;
}
</STYLE>
<TITLE>HTML Editor</TITLE>
<?IMPORT namespace="mytb" implementation="toolbar.htc">
<?IMPORT namespace="mymenu" implementation="menu.htc">
<SCRIPT LANGUAGE="Javascript" SRC="xml.js"></SCRIPT>
<SCRIPT LANGUAGE="Javascript" SRC="stringbuilder.js"></SCRIPT>
<SCRIPT LANGUAGE="Javascript" SRC="anchorposition.js"></SCRIPT>
<SCRIPT LANGUAGE="Javascript" SRC="popupwindow.js"></SCRIPT>
<SCRIPT LANGUAGE="Javascript" SRC="ColorPicker2.js"></SCRIPT>
<SCRIPT>

var cp = new ColorPicker('window');
alert(cp);
var cp2 = new ColorPicker();
// Runs when a color is clicked
function pickColor(color) {
        if (chooser == 1) {
		oDiv.document.execCommand("ForeColor",false,color);
        } else {
		oDiv.document.execCommand("BackColor",false,color);
        }
	    oDiv.focus();

}

function getXhtml() {

                        var sb = new StringBuilder;

                        // IE5 and IE55 has trouble with the document node

                        var cs = oDiv.document.childNodes;
                        var l = cs.length;
                        for (var i = 0; i < l; i++)
                                _appendNodeXHTML(cs[i], sb);

                        return(sb.toString());
}


function setuphtml() {

oDiv.document.designMode="On";
oDiv.document.open();
if (document.loadform.page.value == "") {
	var newhtml = "<?xml version=\"1.0\"?>\n" +
                                "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" " +
                                "\"DTD/xhtml1-transitional.dtd\">\n" +
                                "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n" +
                                "<head>\n<title></title>\n</head>\n<body>\n</body>\n</html>";

	oDiv.document.write(newhtml);
} else {
	oDiv.document.write(document.loadform.page.value);
}
oDiv.document.close();

}


function tpopUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=160,height=290,left = 276,top = 232');");
}

function spopUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 
'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=260,height=10,left = 276,top = 232');");
}

function SaveDocument() {
	spopUp("save.html");
}

function CreateLink() {
 var sText = oDiv.document.selection.createRange();
                        if (!sText.text==""){
			        document.execCommand("CreateLink");
                          }
                                else{
                                            alert("Please select some text!");
                          }
}

function InsertImage() {
	var image;
	image = prompt("Enter a url to an image","http://");		        
	oDiv.document.execCommand("InsertImage",false,image);
}

var chooser=0;

function pick2(anchorname) {
        chooser=1;
        cp2.show(anchorname);
        }
function pick1(anchorname) {
        chooser=0;
        cp2.show(anchorname);
        }

window.onload=doInit
function doInit(){
//ensure that all document elements except the content editable DIV are unselectable
for (i=0; i<document.all.length; i++)
 document.all(i).unselectable = "on";
document.all.oDiv.unselectable = "off";
//clear any text in the Document window and set the focus
oDiv.innerHTML="";
oDiv.focus();
setuphtml();
getSystemFonts();
getBlockFormats();
}
function callFormatting(sFormatString){
oDiv.document.execCommand(sFormatString);
}
function changeFontSize(){
var sSelected=oToolBar.getItem(4).getOptions().item(oToolBar.getItem(4).getAttribute("selectedIndex"));
oDiv.document.execCommand("FontSize", false, sSelected.value);
}
 function VerticalMode(){
if (oDiv.document.body.style.writingMode == 'tb-rl')
   	oDiv.document.body.style.writingMode = 'lr-tb';
else
   	oDiv.document.body.style.writingMode = 'tb-rl';
}
function getSystemFonts(){
	var a=dlgHelper.fonts.count;
	var fArray = new Array();
	var oDropDown = oToolBar.createDropDownListAt("2");
	oDropDown.setAttribute("id","FontNameList");
	for (i = 1;i < dlgHelper.fonts.count;i++){ 
		fArray[i] = dlgHelper.fonts(i);
		var aOptions = oDropDown.getOptions();	
		var oOption = document.createElement("OPTION");
		aOptions.add(oOption);	
		oOption.text = fArray[i];
		oOption.Value = i;
	}
	//attaching the onchange event is necessary in order to detect when a user changes the value in the drop-down listbox
		oDropDown.setAttribute("onchange",ChangeFont);
}
function ChangeFont(){	
var sSelected=oToolBar.getItem(2).getOptions().item(oToolBar.getItem(2).getAttribute("selectedIndex"));
oDiv.document.execCommand("FontName", false, sSelected.text);
}
function getBlockFormats(){
	var a=dlgHelper.blockFormats.count;
	var fArray = new Array();
	var oDropDown = oToolBar.createDropDownListAt("3");
	oDropDown.setAttribute("id","FormatList");
	for (i = 1;i < dlgHelper.blockFormats.count;i++)
	{ 
		fArray[i] = dlgHelper.blockFormats(i);
		var aOptions = oDropDown.getOptions();	
		var oOption = document.createElement("OPTION");
		aOptions.add(oOption);	
		oOption.text = fArray[i];
		oOption.Value = i;
	} 
	//attach the onchange event
	oDropDown.setAttribute("onchange",ChangeFormat);
}
function ChangeFormat(){
var sSelected=oToolBar.getItem(3).getOptions().item(oToolBar.getItem(3).getAttribute("selectedIndex"));
oDiv.document.execCommand("FormatBlock", false, sSelected.text);
}	
var sInitColor=null;
function callColorDlg(sColorType){
if (sInitColor == null) 
	//display color dialog box
	var sColor = dlgHelper.ChooseColorDlg();
else
	var sColor = dlgHelper.ChooseColorDlg(sInitColor);
	//change decimal to hex
	sColor = sColor.toString(16);
	//add extra zeroes if hex number is less than 6 digits
if (sColor.length < 6) {
  	var sTempString = "000000".substring(0,6-sColor.length);
  	sColor = sTempString.concat(sColor);
}
	//change color of the selected text
	oDiv.document.execCommand(sColorType, false, sColor);
	sInitColor = sColor;
	oDiv.focus();
}

//this function is used to call other functions when the user clicks on a menu item. These are the same functions that are called by the toolbar buttons.
function CallMenuFunction(){
var menuChoice = event.result;
switch(menuChoice){
		case "save":
			SaveDocument();
			break;
		case "exit":
			 window.close();
			break;
		case "cut":
			callFormatting('Cut');
			break;
        case "copy":
			callFormatting('Copy');
		    break;
        case "paste":
			callFormatting('Paste');
            break;
		case "bold":
			callFormatting('Bold');
            break;
		case "underline":
			callFormatting('Underline');
            break;
		case "italic":
			callFormatting('Italic');
            break;
		case "fontColor":
			callColorDlg('ForeColor');
            break;
		case "highlight":
			callColorDlg('BackColor');
            break;
		 case "about":
            goContext(); 
            break;
        default:
			break;
			}
}

</SCRIPT>
</HEAD>
<BODY STYLE="overflow:hidden; margin:0px">
<OBJECT id=dlgHelper CLASSID="clsid:3050f819-98b5-11cf-bb82-00aa00bdce0b" WIDTH="0px" HEIGHT="0px"></OBJECT>
<DIV  ID="oContainer" STYLE="background-color:threedface; border:1px solid #cccccc; position:relative; height:10%; 
top:0;">

<mymenu:menu id="File" backcolor="threedface" onsubmenu_click="CallMenuFunction();">File
<mymenu:menu id="save" backcolor="threedface">Save</mymenu:menu>
<mymenu:menu id="exit" backcolor="threedface">Exit</mymenu:menu>
</mymenu:menu>
<mymenu:menu id="Edit" backcolor="threedface" onsubmenu_click="CallMenuFunction();">Edit
<mymenu:menu id="cut" backcolor="threedface">Cut Ctrl+X</mymenu:menu>
<mymenu:menu id="copy" backcolor="threedface">Copy Ctrl+C</mymenu:menu>
<mymenu:menu id="paste" backcolor="threedface">Paste Ctrl+V</mymenu:menu>
</mymenu:menu>
<mymenu:menu id="Format" backcolor="threedface" onsubmenu_click="CallMenuFunction();">Format
<mymenu:menu id="bold" backcolor="threedface">Bold</mymenu:menu>
<mymenu:menu id="italic" backcolor="threedface">Italic</mymenu:menu>
<mymenu:menu id="underline" backcolor="threedface">Underline</mymenu:menu>
<mymenu:menu id="fontColor" backcolor="threedface">Font Color</mymenu:menu>
<mymenu:menu id="highlight" backcolor="threedface">HighLight</mymenu:menu>
</mymenu:menu>
<mymenu:menu id="Help" backcolor="threedface" onsubmenu_click="CallMenuFunction();">Help
<mymenu:menu id="about" backcolor="threedface">About</mymenu:menu>
</mymenu:menu>
 <nobr>
 

<mytb:TOOLBAR STYLE="display:inline; width:100%" ID="oToolBar" 
 >
<mytb:TOOLBARBUTTON  IMAGEURL="UI_save.gif"
title="Save Document" onclick="SaveDocument();"
/>
<mytb:TOOLBARSEPARATOR />
<mytb:TOOLBARDROPDOWNLIST id="oFontSize" onchange="changeFontSize();">
  <option value=1>1
  <option value=2>2
  <option value=3>3
  <option value=4 selected>4
  <option value=5 >5
  <option value=6>6
  <option value=7>7
</mytb:TOOLBARDROPDOWNLIST>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON IMAGEURL="UI_bold.gif" 
title="Bold"
onclick="callFormatting('Bold');"
/>
<mytb:TOOLBARBUTTON IMAGEURL="UI_italic.gif"
title="Italic"
onclick="callFormatting('Italic');" 
/>
<mytb:TOOLBARBUTTON IMAGEURL="UI_underline.gif"
title="Underline"
onclick="callFormatting('Underline');" 
/>
<mytb:TOOLBARBUTTON IMAGEURL="UI_form-strike.gif" 
title="StrikeThrough"
onclick="callFormatting('StrikeThrough');" 
/>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON IMAGEURL="UI_superscript.gif"
title="SuperScript"
onclick="callFormatting('SuperScript');" 
/>
<mytb:TOOLBARBUTTON IMAGEURL="UI_subscript.gif" 
title="SubScript"
onclick="callFormatting('SubScript');" 
/>
</mytb:TOOLBAR>
</nobr>
<nobr>
<mytb:TOOLBAR STYLE="display:inline; width:100%" ID="oToolBar2"
>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_tool-cut.gif"
title="Cut"
onclick="callFormatting('Cut');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_form-copy.gif"
title="Copy"
onclick="callFormatting('Copy');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_paste.gif"
title="Paste"
onclick="callFormatting('Paste');" 
/>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_undo.gif"
title="Undo"
onclick="callFormatting('Undo');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_redo.gif"
title="Redo"
onclick="callFormatting('Redo');" 
/>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_numberlist.gif"
title="InsertOrderedList"
onclick="callFormatting('InsertOrderedList');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_bulletlist.gif"
title="InsertUnorderedList"
onclick="callFormatting('InsertUnorderedList');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_outdent.gif"
title="Outdent"
onclick="callFormatting('Outdent');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_indent.gif"
title="Indent"
onclick="callFormatting('Indent');" 
/>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_leftalign.gif"
title="JustifyLeft"
onclick="callFormatting('JustifyLeft');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_centeralign.gif"
title="JustifyCenter"
onclick="callFormatting('JustifyCenter');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_rightalign.gif"
title="JustifyRight"
onclick="callFormatting('JustifyRight');" 
/>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_tool_vertical.gif"
title="Vertical Alignment"
onclick="VerticalMode();"
/>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON IMAGEURL="UI_fontcolor.gif"
title="Font Color" onclick="pick2('pick2');  return false; "
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_backcolor.gif"
title="HighLight" onclick="pick1('pick1');  return false; "
/>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_link.gif"
title="CreateLink" onclick="CreateLink(); "
/>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_image.gif"
title="InsertImage" onclick="InsertImage(); "
/>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_table.gif"
title="InsertTable" onclick="tpopUp('createtable.html'); "
/>

</mytb:TOOLBAR> 

<a href="#" NAME="pick1" ID="pick1">
</a>

<a href="#" NAME="pick2" ID="pick2">
</a>

</nobr>

<!----
<nobr>
<mytb:TOOLBAR STYLE="display:inline; width:100%" ID="oToolBar3"
>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_tool-cut.gif"
title="Cut"
onclick="callFormatting('Cut');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_form-copy.gif"
title="Copy"
onclick="callFormatting('Copy');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_paste.gif"
title="Paste"
onclick="callFormatting('Paste');" 
/>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_undo.gif"
title="Undo"
onclick="callFormatting('Undo');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_redo.gif"
title="Redo"
onclick="callFormatting('Redo');" 
/>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_numberlist.gif"
title="InsertOrderedList"
onclick="callFormatting('InsertOrderedList');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_bulletlist.gif"
title="InsertUnorderedList"
onclick="callFormatting('InsertUnorderedList');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_outdent.gif"
title="Outdent"
onclick="callFormatting('Outdent');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_indent.gif"
title="Indent"
onclick="callFormatting('Indent');" 
/>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_leftalign.gif"
title="JustifyLeft"
onclick="callFormatting('JustifyLeft');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_centeralign.gif"
title="JustifyCenter"
onclick="callFormatting('JustifyCenter');" 
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_rightalign.gif"
title="JustifyRight"
onclick="callFormatting('JustifyRight');" 
/>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_tool_vertical.gif"
title="Vertical Alignment"
onclick="VerticalMode();"
/>
<mytb:TOOLBARSEPARATOR/>
<mytb:TOOLBARBUTTON IMAGEURL="UI_fontcolor.gif"
title="Font Color" onclick="pick2('pick2');  return false; "
/>
<mytb:TOOLBARBUTTON  IMAGEURL="UI_backcolor.gif"
title="HighLight" onclick="pick1('pick1');  return false; "
/>

</mytb:TOOLBAR> 
--->
<nobr>
</DIV>
<iframe frameborder="0" id="oDiv" class="richEdit" onblur="return false;" scrolling=auto></iframe>
<!SCRIPT LANGUAGE="JavaScript">cp.writeDiv()</SCRIPT>
<form name="loadform">
<textarea wrap=virtual name="page" cols=1 rows=1><html>

<head>
<meta name=&quot;keywords&quot; content=&quot;Web Hosting, Website Hosting, Inexpensive Web Hosting, Webhosting, Website Reseller, Website Resale, Domain Name Registration, Website Design, Webhosting Reseller, Unlimited Bandwidth, Unlimited Transfer, Resale, Resellers, ISP, Internet Service Provider, Shopping Cart&quot;>
<meta name=&quot;description&quot; content=&quot;A World-Wide Leader in Web Hosting &amp; Intranet Solutions. Reseller Program Available.&quot;>
<title>BurstNET Technologies, Inc. Network Operations Center</title>
</head>

<body bgcolor=&quot;black&quot; link=&quot;white&quot; vlink=&quot;white&quot; text=&quot;white&quot;>
<center>
<br><br><br>
<table border=1 bordercolor=white bgcolor=&quot;#000066&quot; width=75% height=75% cellpadding=0 cellspacing=0 cellborder=0 valign=middle align=center>
<tr><td align=center valign=middle>
<br><center>
<font face=&quot;verdana,arial,helvetica&quot; size=-1&quot;>
BurstNET Technologies, Inc.&amp;#153;<br>
The Speed the Internet Travels&amp;#153;
</font>
<br><br><br>
<font face=&quot;verdana,arial,helvetica&quot; size=-1&quot;>
<img src=&quot;http://www.burst.net/images/graphic4.gif&quot; border=0 width=&quot;144&quot; height=&quot;36&quot;>&amp;nbsp;&amp;#153;
</font>
<br><br><br>
<font face=&quot;verdana,arial,helvetica&quot; size=-2&quot;>
<a href=&quot;http://www.burst.net/main.shtml&quot;>United States</a> 
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
United Kingdom
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp; 
Canada
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
Japan
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
France
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
Israel
<p>
Germany
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
Russia
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
South America
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
Italy
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
Australia
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
New Zealand
<br><br><br><br><br><br>
Web Hosting
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
Managed Dedicated Servers
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
Co-Location
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
Reseller Services
<p>
Nationwide Dial Up
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
Leased Line
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
DSL
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
Wireless
&amp;nbsp;&amp;nbsp;|&amp;nbsp;&amp;nbsp;
Domain Registration
</font>
</font>
</center>
<br>
</td></tr>
</table>
</center>
</body>
</html>
</textarea>
</form>
</BODY>
</HTML>
<!---cpanel4 [4.2.0-STABLE_22] Copyright (c) 1997-2001 John N Koston. Licensed on delusions.cpanel.net --->
