<!--
// Create variable is_input to see if there is a ? in the url
var is_input = document.URL.indexOf('?');

// Check the position of the ? in the url
if (is_input != -1)
{ 
// Create variable from ? in the url to the end of the string
addr_str = document.URL.substring(is_input+1, document.URL.length);

var loan = addr_str;
}

if (loan == "undergrad")
{document.write("<a href=\"../loancenter/undergrad_loans.html\">Loans for undergraduate students</a> >");}

else if (loan == "grad")
{document.write("<a href=\"../loancenter/grad_loans.html\">Loans for graduate students</a> >");}

else if (loan == "parent")
{document.write("<a href=\"../loancenter/parent_loans.html\">Loans for parents</a> >");}

else
{document.write("");}
-->

