
	  var commonTxt = '\t\tWelcome to DJPASM !\n\t DJPASM is a multi-pass JavaScript assembler for the 16F84 PIC micro. It is supposed to run on any web browser that supports JavaScript 1.1 and above. It has been tested with Opera 3.60/3.62 (Opera 4.0 has some JavaScript bugs), Microsoft Internet Explorer 4.0/5.0, Netscape 4.60/4.70 and Espial Escape 4.0. \n\t Currently supported assembly directives are:\n\tORG,EQU,RADIX,DT,__config\n\t DJPASM is case insensitive, does not require the code to be indented, and does not have operator support yet. Also \"list\" directive is ignored ,and string literals cannot be used with the \"dt\" directive. That is, you cannot do \ndt \"any string\"\n\tAlso, macros are not recrusive, and cannot be nested, but both forward and backward references to macros are allowed. \n\tDJPASM is free, the source is there for those who want it. Use it it as like, but I strongly suggest that you should stick with MPASM if it is available for your operating system. And DO READ the disclaimer below !';
	  var MSIE=navigator.userAgent.indexOf("MSIE");
	  var NETS=navigator.userAgent.indexOf("Mozilla");
	  var OPER=navigator.userAgent.indexOf("Opera");
	  if (MSIE>-1)
	  {
		document.write("<textarea name=\"codeWindow\" wrap=\"VIRTUAL\" rows=\"15\" cols=\"88\">");
		document.write(commonTxt);
		document.write("</textarea>");
	  }
	  else
	  {
	  	if (OPER>-1)
	  	{
		  document.write("<textarea name=\"codeWindow\" wrap=\"VIRTUAL\" rows=\"15\" cols=\"110\">");
		  document.write(commonTxt);
		  document.write("</textarea>");
	  	}

	  	else
	  	if (NETS>-1)
	  	{
		  document.write("<textarea name=\"codeWindow\" wrap=\"VIRTUAL\" rows=\"15\" cols=\"70\">");
		  document.write(commonTxt);
		  document.write("</textarea>");
	  	}
	  	 else
	  	 {
		 alert('unknown browser!');
		 document.write("<textarea name=\"codeWindow\" wrap=\"VIRTUAL\" rows=\"15\" cols=\"79\">");
		 document.write(commonTxt);
		 document.write("</textarea>");

		}
	  }
