﻿//**************************************************************************************************
//Opens the Check Loan Status
function OpenLogin()
{
	var top = (screen.height /2)-275 ;
	var left = (screen.width / 2)-400;
	var theFeatures = "width=775,height=340,status=yes,top=" + top + ",left=" + left;
	
	var opener = window.open('https://www.academiclendingcenter.com/ALCWeb/Login.aspx?action=loanstatus','Login',theFeatures);
	opener.focus();
}
//**************************************************************************************************
//Opens the Download Packet Window
function OpenDownloadPacket()
{
	var top = 25 ;
	//var top = (screen.height /2)-300 ;
	var left = (screen.width / 2)-400;
	var theFeatures = "width=775,height=650,resizeable=yes,status=yes,top=" + top + ",left=" + left;
	
	var opener = window.open('https://www.academiclendingcenter.com/ALCWeb/Login.aspx?action=download','Login',theFeatures);
	opener.focus();
}