	function addElement(id,str1,str2){
		  elements[elements.length] = new Array()
		  elements[elements.length][0] = str1
		  elements[elements.length][1] = str2
		}
	
		function stripTag(){
			var bodyhtml = document.body.innerHTML;
			
			var browserName = navigator.appName; 
			if (browserName=="Microsoft Internet Explorer"){
	  			//alert("Hi, Explorer User!");
				r_exp = new RegExp("<span class=h1><strong>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=h1>");
				r_exp = new RegExp("<span class=h2><strong>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=h2>");
				r_exp = new RegExp("<span class=h3><strong>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=h3>");
				r_exp = new RegExp("<span class=h1white><strong>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=h1white>");
				r_exp = new RegExp("<span class=h2white><strong>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=h2white>");
				r_exp = new RegExp("<span class=h3white><strong>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=h3white>");
				r_exp = new RegExp("<p align=center><span class=h1>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=h1>");
				r_exp = new RegExp("<p align=center><span class=h2>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=h2>");
				r_exp = new RegExp("<p align=center><span class=h3>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=h3>");
				r_exp = new RegExp("<p align=center><span class=h1white>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=h1white>");
				r_exp = new RegExp("<p align=center><span class=h2white>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=h2white>");
				r_exp = new RegExp("<p align=center><span class=h3white>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=h3white>");
 			} else {
    			//alert("What ARE you browsing with here?");
				r_exp = new RegExp("<span class=\"h1\"><strong>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=\"h1\">");
				r_exp = new RegExp("<span class=\"h2\"><strong>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=\"h2\">");
				r_exp = new RegExp("<span class=\"h3\"><strong>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=\"h3\">");
				r_exp = new RegExp("<span class=\"h1white\"\><strong>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=\"h1white\">");
				r_exp = new RegExp("<span class=\"h2white\"><strong>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=\"h2white\">");
				r_exp = new RegExp("<span class=\"h3white\"><strong>", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<span class=\"h3white\">");
				
				r_exp = new RegExp("<p align=\"center\"><span class\"=h1\">", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<p><span class=\"h1\">");
				r_exp = new RegExp("<p align=\"center\"><span class=\"h2\">", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<p><span class=\"h2\">");
				r_exp = new RegExp("<p align=\"center\"><span class=\"h3\">", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<p><span class=\"h3\">");
				r_exp = new RegExp("<p align=\"center\"><span class=\"h1white\">", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<p><span class=\"h1white\">");
				r_exp = new RegExp("<p align=\"center\"><span class=\"h2white\">", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<p><span class=\"h2white\">");
				r_exp = new RegExp("<p align=\"center\"><span class=\"h3white\">", "gi");
				bodyhtml = bodyhtml.replace(r_exp, "<p><span class=\"h3white\">");
   			}
			r_exp = new RegExp("<\/strong><\/span>", "gi");
			bodyhtml = bodyhtml.replace(r_exp, "</span>");

			document.body.innerHTML = bodyhtml;
		}
