<!--

// Utility JavaScript Functions

// BEGIN PRELOAD NAV /////
var img1 = new Image();
img1.src = "img/nav-checksav-on.gif";
var img2 = new Image();
img2.src = "img/nav-cardloans-on.gif";
var img3 = new Image();
img3.src = "img/nav-homeloans-on.gif";
var img4 = new Image();
img4.src = "img/nav-investins-on.gif";
var img5 = new Image();
img5.src = "img/nav-finedu-on.gif";
// END PRELOAD NAV /////

// BEGIN ROLLOVERS /////
// note: this script only works on DIVs with absolute positioning + non-DIVs
var selectedimage = "";
function ChangeImage(image_name, file_name, absolute_div_id) {
if (image_name == selectedimage)
return;
	if(document.images) {
		if(document.all || absolute_div_id == "")
			document.images[image_name].src = file_name;
		else if(document.layers && absolute_div_id != "")
			eval("window.document." + absolute_div_id + ".document.images[image_name].src = file_name");
	}
}
// END ROLLOVERS /////

// BEGIN POPUP /////
function popWin(theFile,theWindow,theAttributes){
	var popWindow = window.open(theFile,theWindow,theAttributes);
	popWindow.focus();
}
// END POPUP /////

// BEGIN PRINT THIS PAGE /////
function printpage()
{
	if (window.print)
	{
		print();
	}
	else
	{
		alert("Use the Print option in the File menu to print this page.");
		window.open(document.location.href);
	}
}
// END PRINT THIS PAGE /////

// BEGIN LISTBOX AUTO CHANGER /////
function jumpMenu(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
// END LISTBOX AUTO CHANGER /////

//-->