
var port;
if (window.location.port == '') {
	port = '';
} else {
	port = ':' + window.location.port;
}



function jumpTo(arg) {
var dest = '';

if (arg == "Farm Credit Services") 
	dest = "http://www.agri-connection.com" + port;

/* Example 
else if (arg == "Badgerland FCS") 
	dest = "http://www.badgerlandfcs.com" + port;
*/


else if (arg == "Badgerland FCS") 
	dest = "http://www.badgerlandfcs.com" + port;
else if (arg == "FCS of Northeast Wisconsin") 
	dest = "http://www.myfarmcredit.com" + port;
else if (arg == "AgCountry FCS") 
	dest = "http://www.agcountry.com" + port;
else if (arg == 'GreenStone FCS') 
	dest = "http://www.greenstonefcs.com" + port;
else if (arg == 'FCS of MidAmerica') 
	dest = "http://www.e-farmcredit.com";
else if (arg == "agstar") 
	dest = "http://www.agstar.com";
else if (arg == "FCS of Minnesota Valley") 
	dest = "http://www.agexperts.com" + port;
else if (arg == "FCS of Grand Forks") 
	dest = "http://www.fcsdirect.com" + port;
else if (arg == "FCS of North Dakota") 
	dest = "http://www.farmcreditnd.com";
else if (arg == "FCS of Mandan") 
	dest = "http://www.agri-connection.com" + port; 
else if (arg == "FCS of Northwest Wisconsin") 
	dest = "http://www.online-fcs.com" + port;
else if (arg == "FCS of North Central Wisconsin") 
	dest = "http://www.fcsfinancialservices.com" + port;
else if (arg == "FCS of Missouri") 
	dest = "http://www.farmcreditofmissouri.com" + port;
else if (arg == "FCS of Western Arkansas") 
	dest = "http://www.myaglender.com" + port;
else if (arg == "Ag Heritage FCS") 
	dest = "http://www.agheritagefcs.com" + port;
else if (arg == "Farm Credit Midsouth") 
	dest = "http://www.farmcreditmidsouth.com";
else if (arg == "1st FCS") 
	dest = "http://www.usfarmcredit.com";
else if (arg == "FCS of Illinois") 
	dest = "http://www.usfarmcredit.com";
	
window.location = dest;
}
