void show_window();
show_window() displays the window.
void hide_window();
hide_window() hides the window.
void move_win(UBYTE x,UBYTE y);
move_win(x,y) moves the window to another location. x is the new x location for the
window.
y is the new y location for the window.
void scroll_win(BYTE x,BYTE y); /*Move Window relative to current position*/
scroll_win scrolls the window to another location. x is how many pixels horizontally you
would like to scroll the window. y is how many pixels vertically you would like to
scroll the window.