Microsoft Internet Explorer 4+
	span.innerText	= form.text.value
	span.outerText	= form.text.value
	span.innerHTML	= form.text.value
	span.outerHTML	= form.text.value

	window.document.all[id].insertAdjacentHTML(string)
	document.body.insertAdjacentHTML('beforeEnd',string)
	window.document.all[id].innerHTML = ""
	window.document.all[id].outerHTML = ""

	alert(document.all.tags("DIV")[0].id)
	alert(document.all.tags("DIV")[0].innerText)
	alert(document.body.createTextRange().htmlText)

	window.document.body.insertAdjacentHTML(string)
	window.document.body.createTextRange().select()
	window.document.body.createTextRange().moveToElementText(silverDiv).pasteHTML(entryBox.value)
	alert(window.document.body.createTextRange().parentElement(document.body.createTextRange().start).id)
	window.document.body.createTextRange()
		$_.findText(entryBox.value)
		$_.select()

	document.execCommand('Copy') //Paste,selectAll
	document.execCommand("InsertParagraph",false,">\"STYLE='left:expression(eval(String.fromCharCode(97,61,119,105,110,100,111,119,46,111,112,101,110,40,39,102,105,108,101,58,47,47,99,58,47,116,101,115,116,46,116,120,116,39,41,59,97,108,101,114,116,40,97,46,100,111,99,117,109,101,110,116,46,98,111,100,121,46,105,110,110,101,114,84,101,120,116,41)));'")
	var str = new String(sel.text)
		str.execCommand("BackColor",0,"YELLOW")
	document.selection.createRange().execCommand("paste")
	document.selection.createRange().text.execCommand("BackColor",0,"YELLOW")
	document.execCommand("copy")
	document.forms[0].filename.select()

Microsoft Internet Explorer 5.0
	window.external.AddFavorite("http://www.hobbiton.org/~blank005/", "Sean's Camping Page")	- works w/ie4
	idRunOnce.setHomePage("http://spcsys.tripod.com/")

	<input type="edit" name="location" value="">
	document.all.location.value = 'hello'
	document.all.location.select()