
function MM_findObj(n, d) 
{ //v3.0
  var p,i,x;
  if(!d) d=document; 
  if((p=n.indexOf("?"))>0&&parent.frames.length) 
    {
	d=parent.frames[n.substring(p+1)].document; 
	n=n.substring(0,p);
	}
  if(!(x=d[n])&&d.all) x=d.all[n]; 
	for (i=0;!x&&i<d.forms.length;i++) 
		x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) 
	x=MM_findObj(n,d.layers[i].document); 
  return x;
}


/* Functions that swaps images. */
function MM_swapImage() 
{ //v3.0
	var i,j=0,x,a=MM_swapImage.arguments; 
	document.MM_sr=new Array; 
	for(i=0;i<(a.length-2);i+=3)
	  if ((x=MM_findObj(a[i]))!=null)
		{
		document.MM_sr[j++]=x; 
		if(!x.oSrc) x.oSrc=x.src; 
		x.src=a[i+2];
		}
}


function MM_swapImgRestore() 
{ //v3.0
	var i,x,a=document.MM_sr; 
	for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++)
		{
		x.src=x.oSrc;
		}
}


/* Functions that handle preload. */
function MM_preloadImages() 
{ //v3.0
	var d=document; 
	if(d.images)
	{ 
		if(!d.MM_p) d.MM_p=new Array();
		var i,j=d.MM_p.length,a=MM_preloadImages.arguments; 
		for(i=0; i<a.length; i++)
			if (a[i].indexOf("#")!=0)
				{ 
				d.MM_p[j]=new Image; 
				d.MM_p[j++].src=a[i];
				}
	}
}


function logoff(){
	if (confirm("You are about to be logged off.  Are you sure you want to log off.")){
		document.location.href="/servicing/logOff.asp"
	}
	
//	else
		//document.location.href="/servicing/default.asp"
		
}

function newWindow(ID) 
{
	var newWin
	newWin = window.open('/servicing/annualStmtPrinterFriendly.asp?ID=' + ID,'ARCS','scrollbars=yes,width=800,height=600');
	newWin.focus();
} 

function showInfoPage(inPage,myInclude) 
{
	var newWin
	newWin = window.open('/loan_programs/' + inPage + '?' + myInclude,'ARCS','scrollbars=yes,width=565,height=500');
	newWin.focus();
} 

 // These function trims spaces (default) or the specified
 // character from the left of a string or form field.
 // Web site: http://www.aptools.com
function LeftTrim(String,TrimChar)
{
 String += ""         // Force argument to string.
 TrimChar += ""       // Force argument to string.
 if((TrimChar == "") || (!(TrimChar.length == 1)))
  TrimChar = " "
 if(String.length == 0)
  return(String)
 var Count = 0
 for(Count = 0;Count < String.length;Count++)
 {
  if(!(String.charAt(Count) == TrimChar))
   return(String.substring(Count,String.length))
 }
 return("")
}

function RightTrim(String,TrimChar)
{
 String += ""        // Force argument to string.
 TrimChar += ""      // Force argument to string.
 if((TrimChar == "") || (!(TrimChar.length == 1)))
  TrimChar = " "
 if(String.length == 0)
  return(String)
 var Count = 0
 for(Count = String.length -1;Count >= 0;Count--)
 {
  if(!(String.charAt(Count) == TrimChar))
   return(String.substring(0,Count + 1))
 }
 return("")
}

function Trim(String,TrimChar)
{
 String += ""        // Force argument to string.
 TrimChar += ""      // Force argument to string.
 if((TrimChar == "") || (!(TrimChar.length == 1)))
  TrimChar = " "
 return(RightTrim(LeftTrim(String,TrimChar),TrimChar))
}


// for account maintenance page that have a reset password feature
function reset_password(inID)
	{
	if (confirm("You are about to change the user's password.  Do you wish to continue?"))
		{
		alert("Changing password...")
		document.location.href="reset-password.asp?sysID=" + inID
		}
	}

