/* function OpenWindowSecure()
	Desc:	This function open new secure window for internet banking

	Param:	s - determines which window to open
	Return:	None
	Pre:		None
	Post:	None
*/
function OpenIBLogonWindow(s) {
	if ((screen.Height >= 0) && (screen.Width >= 0)) {
		var height = screen.Height - 75;
		var width = screen.Width - 10;
	}
	else if ((screen.availHeight >= 0) && (screen.availWidth >= 0)) {
		var height = screen.availHeight - 45;
		var width = screen.availWidth - 10;
	}
	//s = "/common/" + s;
	newWin = window.open(s, "ANZWIN2", "toolbar=0,status=1,location=no,menubar=no,directories=no,scrollbars=yes,resizable=yes,screenX=0,screenY=0,left=0,top=0,width=" + width + ",height=" + height);
}

function openNewInetWindow( windowURL, windowName, windowFeatures ) { 
	return window.open( windowURL, windowName, windowFeatures ) ; 
}