
function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}
var preloadFlag = true;
function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

function popUp(url, width, height) {
	
	if (width && height) {
		window.open(url,"_blank","toolbar=no,height=" + height + ",width=" + width + ",location=no,address=no,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no,copyhistory=true");
	} else {
		window.open(url,"_blank","toolbar=no,height=500,width=500,location=no,address=no,directories=no,status=no,scrollbars=yes,resizable=yes,menubar=no,copyhistory=true");
	}
}


<!--

if (document.images)
{
    homeon = new Image(64, 29);	homeon.src = "/images/2756/en-us/nav_home_on.gif";	homeoff = new Image(64, 29);	homeoff.src = "/images/2756/en-us/nav_home.gif";

	aboutuson = new Image(64, 29);
	aboutuson.src = "/images/2756/en-us/nav_about_on.gif";
	aboutusoff = new Image(64, 29);
	aboutusoff.src = "/images/2756/en-us/nav_about.gif";

	programson = new Image(72, 29);
	programson.src = "/images/2756/en-us/nav_programs_on.gif";
	programsoff = new Image(72, 29);
	programsoff.src = "/images/2756/en-us/nav_programs.gif";

	admissionson = new Image(56, 29);
	admissionson.src = "/images/2756/en-us/nav_admissions_on.gif";
	admissionsoff = new Image(56, 29);
	admissionsoff.src = "/images/2756/en-us/nav_admissions.gif";

	financialaidon = new Image(99, 29);

	financialaidon.src = "/images/2756/en-us/nav_financial_on.gif";
	financialaidoff = new Image(99, 29);
	financialaidoff.src = "/images/2756/en-us/nav_financial.gif";

	enrollon = new Image(99, 29);
	enrollon.src = "/images/2756/en-us/nav_enroll_on.gif";
	enrolloff = new Image(99, 29);
	enrolloff.src = "/images/2756/en-us/nav_enroll.gif";
	
	careerson = new Image(82, 29);
	careerson.src = "/images/2756/en-us/nav_career_on.gif";
	careersoff = new Image(82, 29);
	careersoff.src = "/images/2756/en-us/nav_career.gif";
	
	contacton = new Image(82, 29);
	contacton.src = "/images/2756/en-us/nav_contact_on.gif";
	contactoff = new Image(82, 29);
	contactoff.src = "/images/2756/en-us/nav_contact.gif";

	
}

function img_act(imgName) {
	if (document.images)
	{
		imgOn = eval(imgName + "on.src");
		document [imgName].src = imgOn;
	}
}

function img_inact(imgName)
{
	if (document.images)
	{
		imgOff = eval(imgName + "off.src");
		document [imgName].src = imgOff;
	}
}
//-->