   Write_window() is like printf but has positioning parameters. 
   
Example:

   char name[20] = "bruce";
   
   write_window(3,5,"My name is %s",name);
   
   This will display 'My name is bruce' at 3,5 of the current window.

