Login

Choose which of our self-service portals you would like to visit. Simply select one from the dropdown and click "GO".


Callback

If you have any queries please complete the form below and we will contact you.


This is a big thank you to your support team. Your standard is really above average. I am in fact so impressed that I am going to sign up with you guys in my personal capacity.

Johann

Norton System Works Scripts

This code below is a Norton System Works feature to prevent pop-up windows and other malicious scripts. The script can be disabled in the Internet Security menu. You may notice that the code reassigns the window.open command to a generic object.

1. Script block:
<script language="JavaScript">
<!--
  function SymError() {
    return true;
  }
  window.onerror = SymError;
  var SymRealWinOpen = window.open;
  function SymWinOpen(url, name, attributes) {
    return (new Object());
  }
  window.open = SymWinOpen;
//-->
</script>
2. Script block:
<script language="JavaScript">
<!--
  var SymRealOnLoad;
  var SymRealOnUnload;
  function SymOnUnload() {
    window.open = SymWinOpen;
    if (SymRealOnUnload!= null)
      SymRealOnUnload();
  }
  function SymOnLoad() {
    if(SymRealOnLoad!= null)
      SymRealOnLoad();
    window.open = SymRealWinOpen;
    SymRealOnUnload = window.onunload;
    window.onunload = SymOnUnload;
  }
  SymRealOnLoad = window.onload;
  window.onload = SymOnLoad;
//-->
</script>