function checkspell() {
	//function to perform spell check
	try {
		var tmpis = new ActiveXObject("ieSpell.ieSpellExtension");
		tmpis.CheckAllLinkedDocuments(document);
	}
	catch(exception) {
		if(exception.number==-2146827859) {
			if (confirm("ieSpell - A Spell Checker for Internet Explorer\nwas not detected on this PC.\n\nClick Ok to go to download page."))
				window.open("http://www.iespell.com/download.php","DownLoad");
		} else {
			alert("Error Loading ieSpell: Exception " + exception.number);
		}
	}
}



function pop_editor(fn){
	var attributes;
	attributes = "width=800; height=800; resizable=1; status=no;"
	attributes = "width=800; height=800; resizable=yes; status=no; toolbar=no;"

	window.open("HTMLEditor.asp?fn="+fn,"editor",attributes)
}

