Change tko to stop it popping out the same window every time
per Steve

Signed-off-by: Martin Bligh <mbligh@google.com>



git-svn-id: http://test.kernel.org/svn/autotest/trunk@2556 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/tko/display.py b/tko/display.py
index ac20ec2..21ff6c4 100755
--- a/tko/display.py
+++ b/tko/display.py
@@ -81,7 +81,7 @@
         return html
     # no hover if embedded into AFE but links shall redirect to new window
     if data: ## cell is non empty
-        html =  '<a href="%s" target=NEW>%s</a>' % (link, data)
+        html =  '<a href="%s" target="_blank">%s</a>' % (link, data)
         return html
     else: ## cell is empty
         return '&nbsp;'