var COURL = "https://secure.calibreonline.com.au";

	var WinWidth = screen.availWidth - 15;
	var WinHeight = screen.availHeight - 60;
	var LeftPos = 0
	var TopPos = 0

	function OpenClient()
	{
		Window = window.open(COURL, "CalibreOnlineClient", "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();
	}