/*

	CUSTOMER ONLINE ACCOUNT MANAGEMENT SYSTEM
	
*/

function openCustomerWindow() 

 { 
  var iHeight;
  var iWidth;
  var iLeftPos;
  var iTopPos;
  iHeight=650;
  iWidth = 900;
  
  if (iHeight < window.screen.height)
   { iTopPos = (window.screen.height/2) - ((iHeight/2)+60); }
  else
   {iTopPos = 0;iHeight = window.screen.height - 60;}
  if (iWidth < window.screen.width)
   {iLeftPos = (window.screen.width/2) - ((iWidth/2)+15);}
  else
   {iLeftPos = 0;iWidth = window.screen.width - 15;}
   
  window.opener=self;

 newwin = window.open('https://online.liberty.com.au/customerweb/pages/login/Libertycustomerlogin.aspx','','toolbar=0,status=1,location=no,menubar=no,directories=no,scrollbars=yes,resizable=yes,screenX=' + iLeftPos + ',screenY=' + iTopPos + ',left=' + iLeftPos + ',top=' + iTopPos + ',width=' + iWidth + ',height=' + iHeight);}