[#Python:
import inspect
parent = inspect.getmodule(inspect.stack()[-1][0])
Module = None
if parent.act == "index": import Handlers.LatestNewsOverview as Module
elif parent.act == "view": import Handlers.View as Module
elif parent.act == "search": import Handlers.Search as Module
elif parent.act == "alertform": import Handlers.AlertForm as Module
elif parent.act == "qrcode": import Handlers.FreeSoftwareTools.QRCode as Module
if Module and Module.__dict__.has_key("handler"): print Module.handler.html.code
#]
[#Python:
Module = None
if parent.visitor_country == "GR":
import Handlers.CareerJet.SearchBox as Module
print Module.handler(parent).html.code
#]