for all you people who arent supposed to be playing, but quite obviously are. here's a nifty tool written in autoit for you. simply, press F9 to hide, and F10 to show. have fun . (btw, it hides it completely. no trace, unless your parents/(bad people) are really suspicious and look at task manager. have fun!!!
Code:
hotkeyset ("{F9}", "hide")
hotkeyset ("{F10}", "show")
func hide()
WinSetState ( "World of Warcraft", "", @SW_MINIMIZE )
WinSetState ( "World of Warcraft", "", @SW_HIDE )
endfunc
func show()
Winsetstate ( "World of Warcraft", "", @SW_SHOW )
WinSetState ( "World of Warcraft", "", @SW_MAXIMIZE )
endfunc
while 1
sleep(1000)
WEnd