/********************************************/
/********************************************/

// DO NOT EDIT THIS FILE
// Last updated 23-Sept-2005

/********************************************/
/********************************************/

var LLURL = "https://secure.linkloan.com.au/Login.aspx?MMID=";

	var WinWidth = 790;
	var WinHeight = 600;
	var LeftPos = (screen.width / 2) - (WinWidth / 2);
	var TopPos = (screen.height / 2) - (WinHeight / 2);

function OpenClient(MMID)
{
	Window = window.open(LLURL + MMID, "Client", "toolbar=0,status=1,location=no,menubar=no,directories=no,scrollbars=yes,resizable=yes,screenX=0,screenY=0,left=" + LeftPos + ",top=" + TopPos + ",width=" + WinWidth + ",height=" + WinHeight + "");
	Window.focus();
}