function apply() { 
   getinfo = document.getElementById("applyfor"); 
   if (getinfo.className=="hideapply") { 
      getinfo.className="showapply"; 
   } 
   else { 
      getinfo.className="hideapply"; 
   } 
}

function TDApp(){
url = "https://mystate.com.au/forms/term-deposit.aspx";
strWidth = 900
strHeight = 700
WindowName = "TDApp"
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();
}