def javacripts(filename):
    return static_file(filename, root='httpserver/www')
def Visir():
    ClientInfo()
    return static_file("visir.html", root=VisirPath)
def image(filename):
    return static_file(filename, root='httpserver/www')
def Index():
    ClientInfo()
    return static_file("/static/login.html", root='httpserver/www')
def stylesheets(filename):
    return static_file(filename, root='httpserver/www')