function changeText(){
	document.getElementById('bold').innerHTML = "<div class='body'><span lang='en-us'>  <form action='do.php' method='post'>  <p><b>New? </b>Click <a href='javascript:c()'>here</a></p>Enter your filename:<input type='text' name='filename' size='20'>.txt<i><a href='javascript:b()'> ?</a></i><br>  Enter a directory for your code:<input type='text' name='dir' size='20'><i><a href='javascript:a()'> ?</a></i><br>  Your Code:<p><textarea rows='27' name='te1' cols='57'></textarea><br><input type='submit' value='Done' name='p1'></p></form></td></tr></tbody></table><br>"

}

function a()
{
my_window= window.open ("",
  "mywindow1","status=1,width=350,height=150");
my_window.document.write("Enter a directory name for your code to be placed. If you have already created a folder from a time before, use that folder for your code. Example: johnny "); 
}

function b()
{
my_window= window.open ("",
  "mywindow1","status=1,width=350,height=150");
my_window.document.write("Enter a filename for your code. Example: mycode "); 
}

function c()
{
my_window= window.open ("",
  "mywindow1","status=1,width=350,height=250");
  
my_window.document.write("Simply just enter your information such as filename, the name of the file which will be saved, your directory which is where all you code resides and finally your code in the boxes below.");


}
