// JavaScript Document
function opennewwindow()
{
   var ScreenHeight
   var ScreenWidth
   ScreenHeight = 768;
   ScreenWidth = 1024;
   targetname = "IBANK3_1";
   // In the new window the toolbar has been turned on while in development so that we can use the back button
   var newWindow = window.open("https://www.necu.com.au/mvpnewengland/Login.asp",targetname,"toolbar=no,menubar=no,location=no,hotkeys=no,directories=no,scrollbars=yes,resizable=yes,status=yes,personalbar=no,self.resizeTo(1024,768)");
   newWindow.focus();
}


function hidediv() { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('contactBox').style.visibility = 'hidden'; 
} 
else { 
if (document.layers) { // Netscape 4 
document.hideShow.visibility = 'hidden'; 
} 
else { // IE 4 
document.all.hideShow.style.visibility = 'hidden'; 
} 
} 
}

function showdiv() { 
if (document.getElementById) { // DOM3 = IE5, NS6 
document.getElementById('contactBox').style.visibility = 'visible'; 
} 
else { 
if (document.layers) { // Netscape 4 
document.hideShow.visibility = 'visible'; 
} 
else { // IE 4 
document.all.hideShow.style.visibility = 'visible'; 
} 
} 
} 