function iblogin(){
DirectTraffic();
strWidth = 1000
strHeight = 700
WindowName = "ib"
var settings="resizable=1,toolbar=0,location=0,scrollbars=1,menubar=0,status=1,width="+strWidth+",height="+strHeight+",top=0,left=0";
newWindow = window.open(url, WindowName, settings);
newWindow.focus();
}
 
function DirectTraffic(){
  
  var ibMsgOn = "no" // yes to display IB message, no to hide message
  if(ibMsgOn == "yes" || ibMsgOn == "y") {
    url = "https://secure.tptl.com.au/tptlonline/";
  } else {
    url = "https://secure.tptl.com.au/tptlonline/";
  }
}

